Re: [Gimp-user] Editing Multi Images



On Sun, Aug 19, 2012 at 5:35 PM, Kevin Cozens <kevin 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



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]