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

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
tireless

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

Post by tireless »

for example:

Code: Select all

convert -resize 200 *.jpg thumb\
How to keep the filename?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

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

Post 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
tireless

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

Post by tireless »

Thanks for your help.
Post Reply