RSS/Atom feed Twitter
Site is read-only, email is disabled

Editing Multi Images

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

6 of 6 messages available
Toggle history

Please log in to manage your subscriptions.

Editing Multi Images N Q Suzumeh 19 Aug 18:59
  Editing Multi Images Alexandre Prokoudine 19 Aug 19:07
  Editing Multi Images fmc 19 Aug 21:07
  Editing Multi Images Kevin Cozens 19 Aug 21:35
   Editing Multi Images Partha Bagchi 19 Aug 21:53
  Editing Multi Images Liam R E Quin 21 Aug 17:06
N Q Suzumeh
2012-08-19 18:59:28 UTC (over 12 years ago)

Editing Multi Images

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

Alexandre Prokoudine
2012-08-19 19:07:20 UTC (over 12 years ago)

Editing Multi Images

On Sun, Aug 19, 2012 at 10: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?

Of course :)

Please just use any batch processing software. There's plenty of such applications. Phatch comes to mind as one of them.

Or you can install something like http://www.alessandrofrancesconi.it/projects/bimp/ for GIMP.

Alexandre Prokoudine http://libregraphicsworld.org

fmc
2012-08-19 21:07:40 UTC (over 12 years ago)

Editing Multi Images

On 19/08/12 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

Better to use something like mogrify from the display package rather than GIMP for something like this.

Frank

Kevin Cozens
2012-08-19 21:35:33 UTC (over 12 years ago)

Editing Multi Images

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.

Partha Bagchi
2012-08-19 21:53:29 UTC (over 12 years ago)

Editing Multi Images

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

Liam R E Quin
2012-08-21 17:06:34 UTC (over 12 years ago)

Editing Multi Images

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