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!

In ksh and I think it works in bash too:


for fn in $(<listoffiles); do

        convert -resize 20% $fn 20-${fn}
done

listoffiles is a file containing the names of the files you want to convert. If you can define them any other way (name, location) substitute that for the file.

--
Until later, Geoffrey   [EMAIL PROTECTED]

Building secure systems inspite of Microsoft

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

Reply via email to