Page 1 of 1

How to resize *.jpg to another folder,and keep filename?

Posted: 2008-12-12T02:12:38-07:00
by tireless
for example:

Code: Select all

convert -resize 200 *.jpg thumb\
How to keep the filename?

Re: How to resize *.jpg to another folder,and keep filename?

Posted: 2008-12-12T11:47:25-07:00
by fmw42
tireless wrote:for example:

Code: Select all

convert -resize 200 *.jpg thumb\
How to keep the filename?

see mogrify at http://www.imagemagick.org/Usage/basics/#mogrify

Re: How to resize *.jpg to another folder,and keep filename?

Posted: 2008-12-12T18:27:57-07:00
by tireless
Thanks for your help.