On 5/20/06, Brian Macken <[EMAIL PROTECTED]> wrote:
I have a folder full of 3456x2304 sized images that I would like to resize
to 1024x768. I've tried mogrify like so:
mogrify -resize 1025x768! *.jpg
and I keep getting this as an error
mogrify: unable to open image '*.jpg': Invalid argument
For some reason mogrify isn't automatically expanding wildcards. This will work:
for %f in (*.jpg) do mogrify -resize 1024x768 %f
If you're running it from a batch file use %% instead of %.
GNS
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users