Trying to resize images from c:\images to c:\images\done and keep the original filename
Got as far as convert c:\images\*.* resize 250x250 c:\images\done\
and that just gives me a load of filenames 0.jpg 1.jpg etc etc
please please please can i have it keep the original filename
EDIT: actually i just thought i need 2 other different sizes produced at the same time. with "_t" and "_s" suffixed .. i can do this with the write command right? how?
EDIT 2: Getting somewhere now....
Code: Select all
mogrify -format jpg -path images/done/ -resize 250x250 images/*.jpg