On Sun, Aug 19, 2012 at 5:35 PM, Kevin Cozens <ke...@ve3syb.ca> wrote:
> On 12-08-19 02:59 PM, 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
>
>
> Check out ImageMagick. I seem to remember I used it once before to do a bulk
> modify. Look at convert or mogrify.
>
>
> --
> Cheers!
>
> Kevin.
>
Right!

Since you didn't mention OS, you can try this with Linux, Apple
terminal, or Msys in Windows:

for i in *.jpg; do
        out=$(ls $i | sed -e 's/.jpg//g')
    convert "$i" -resize 1024 "$out-s.jpg"
done
_______________________________________________
gimp-user-list mailing list
gimp-user-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gimp-user-list

Reply via email to