On Sun, 2012-08-19 at 11:59 -0700, N Q Suzumeh wrote: > I want to scale down a set of 125 images. Is there another way to do > this other than one at a time? Prue's Doux
Most Linux distributions include ImageMagick, and you can do, e.g. mkdir precious-originals cp -a *.jpg precious-originals mogrify -geometry 500x500 -filter Cubic -sharpen "25%" *.jpg (This will also work on OS X; in both cases you may need to install imagemagick) If the files are GIMP-native (xcf, xcf.gz, etc) then use one of the various gimp batch processors - there's one called David's Batch Processor on gimp.org. Liam -- Liam Quin - XML Activity Lead, W3C, http://www.w3.org/People/Quin/ Pictures from old books: http://fromoldbooks.org/ Ankh: irc.sorcery.net irc.gnome.org freenode/#xml _______________________________________________ gimp-user-list mailing list [email protected] https://mail.gnome.org/mailman/listinfo/gimp-user-list
