Hello fmw42
thank you for your help
Found in the meantime the option switch for resize ignore aspect ratio ! ...
I am using windows with batchfiles - so the correct statement for my batchfile is not 31x17! it is 31x17^^! ...
Sometimes reading the manual helps.
Avanatus
Search found 9 matches
- 2016-07-08T13:19:08-07:00
- Forum: Users
- Topic: [solved] DDS-Files aspect ratio
- Replies: 4
- Views: 1826
- 2016-07-08T12:44:30-07:00
- Forum: Users
- Topic: [solved] DDS-Files aspect ratio
- Replies: 4
- Views: 1826
[solved] DDS-Files aspect ratio
Hi all, i converted some dds files - all works fine - except - it seems for me the resize option preserves the aspect ratio of a converted file.... I want to stretch it more. If i use the resize command it resizes it not to the values i use - it resizes it to preserve the aspect ratio of the base ...
- 2016-07-08T12:23:07-07:00
- Forum: Users
- Topic: [solved] Need help with copy pixels - resize and paste into another region
- Replies: 11
- Views: 3437
Re: [solved] Need help with copy pixels - resize and paste into another region
Done - and thanks for help
- 2016-07-08T11:48:45-07:00
- Forum: Users
- Topic: [solved] Need help with copy pixels - resize and paste into another region
- Replies: 11
- Views: 3437
Re: Need help with copy pixels - resize and paste into another region
How can i set the thread to "solved"?
- 2016-07-08T11:47:49-07:00
- Forum: Users
- Topic: [solved] Need help with copy pixels - resize and paste into another region
- Replies: 11
- Views: 3437
Re: Need help with copy pixels - resize and paste into another region
Ahh... thanks :-) Forgot the + sighns^^ now: convert "%%f" ^( "!filepath!\!filename!.dds" -crop 71x48+25+36 +repage -resize 34x24 ^) -geometry +12+16 -compose Over -composite "!filepath!outputimage1\!filename!.dds" ) ...works like a charm^^ Thanks a million for help Avanatus
- 2016-07-08T11:09:57-07:00
- Forum: Users
- Topic: [solved] Need help with copy pixels - resize and paste into another region
- Replies: 11
- Views: 3437
Re: Need help with copy pixels - resize and paste into another region
Thanks snibgo - it helps....
Now i get an error from the convert module "convert: invalid geometry `12,16' @ error/geometry.c/ParseRegionGeometry/1542."
Hmpf^^
Now i get an error from the convert module "convert: invalid geometry `12,16' @ error/geometry.c/ParseRegionGeometry/1542."
Hmpf^^
- 2016-07-08T09:46:55-07:00
- Forum: Users
- Topic: [solved] Need help with copy pixels - resize and paste into another region
- Replies: 11
- Views: 3437
Re: Need help with copy pixels - resize and paste into another region
Hi snibgo, i am working on a windows desktop with win7 At first i had problems with directorys with spaces in it, so i changed to directorys without spaces in the names. Now all worked until your code^^. Here is the batchfile i am using: del tempimage1\*.dds del tempimage2\*.dds del tempimage3\*.dds ...
- 2016-07-08T05:20:41-07:00
- Forum: Users
- Topic: [solved] Need help with copy pixels - resize and paste into another region
- Replies: 11
- Views: 3437
Re: Need help with copy pixels - resize and paste into another region
Hello snibgo,
yes thats what i want to do
All seems clear to me except where you resize the image to 34x24....?
yes thats what i want to do
All seems clear to me except where you resize the image to 34x24....?
- 2016-07-08T02:02:20-07:00
- Forum: Users
- Topic: [solved] Need help with copy pixels - resize and paste into another region
- Replies: 11
- Views: 3437
[solved] Need help with copy pixels - resize and paste into another region
Hello all, I searched but did not find the solution - maybe someone can help me. Original: Format *.dds - size 128x128 - position region: 25,36 - size region: 71x48 i want to convert to: Converted: Format *.dds - size 64x64 - position region: 12,16 - size region: 34x24 I try the convert Option ...