Re: [Gimp-user] Editing Multi Images
- From: Partha Bagchi <partha1b gmail com>
- To: Kevin Cozens <kevin ve3syb ca>
- Cc: gimp-user-list gnome org
- Subject: Re: [Gimp-user] Editing Multi Images
- Date: Sun, 19 Aug 2012 17:53:29 -0400
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]