On Thu, 2003-11-13 at 15:00, Nick Wilson wrote:
> Hi everyone, 
> 
> Does anyone know if there is a way to 'batch resize'? - I have about
> 1000 images that all need to be 20% of the original size...
> 
> Many thanks!

man ImageMagick
man convert
man mogrify

etc.

ImageMagick is your friend for this kind of job.  It will convert
batches of images with a simple command line interface.  

For example:

for pic in *.jpg
do
convert -resize 20%x20% $pic small_$pic
done

HTH,
-- 

--Jeff

Jeff Trefftzs <[EMAIL PROTECTED]>
http://www.tcsn.net/trefftzs                    Home Page
http://gug.sunsite.dk/gallery.php?artist=68     Gimp Gallery
http://trefftzs.topcities.com/                  Photo Gallery 

_______________________________________________
Gimp-user mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user

Reply via email to