Hey,
windows uses the right convert.exe, if I type "convert" manually in the commandline it works!
greetings
marc
Search found 2 matches
- 2012-11-06T06:52:19-07:00
- Forum: Users
- Topic: convert Problems under Windows 7
- Replies: 3
- Views: 11475
- 2012-11-05T02:11:44-07:00
- Forum: Users
- Topic: convert Problems under Windows 7
- Replies: 3
- Views: 11475
convert Problems under Windows 7
Dear Imagemagick experts, I've got a problem with the following script under Windows 7 @echo on FOR /F %%I IN ('DIR *.jpg /b') DO (convert.exe %%I -resize 800x600 -auto-orient -density 72 -quality 75 c_%%I composite -watermark 15%% -gravity center c:\imagebatch\pic.png c_%%I c_%%I) I've start this ...