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

Gimp 2.8 on Linux - Image/wallpaper resizing

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.

3 of 3 messages available
Toggle history

Please log in to manage your subscriptions.

Gimp 2.8 on Linux - Image/wallpaper resizing Michael 01 Apr 03:28
  Gimp 2.8 on Linux - Image/wallpaper resizing Pat David 01 Apr 17:24
   Gimp 2.8 on Linux - Image/wallpaper resizing Akkana Peck 01 Apr 20:29
Michael
2015-04-01 03:28:58 UTC (about 9 years ago)

Gimp 2.8 on Linux - Image/wallpaper resizing

I have a long list of images (wallpapers/backgrounds). Just for the sack of argument, let's say that I have 500 images. Can I perform a "bulk" image resizing by selecting all the images and have Gimp perform a resizing?

My monitor is wide-screen (1370-800 (approximately)). Some of the wallpapers are set to a resolution greater than the monitor size; example XYZ image is set to 1400-900. I want to make all the wallpapers the save size without having to perform the task by selecting one image at a time.

r, Michael

Pat David
2015-04-01 17:24:02 UTC (about 9 years ago)

Gimp 2.8 on Linux - Image/wallpaper resizing

I have a long list of images (wallpapers/backgrounds). Just for the sack of argument, let's say that I have 500 images. Can I perform a "bulk" image resizing by selecting all the images and have Gimp perform a resizing?

This is a task likely better suited to a different tool, such as Imagemagick (http://www.imagemagick.org/) convert or mogrify.

My monitor is wide-screen (1370-800 (approximately)). Some of the wallpapers are set to a resolution greater than the monitor size; example XYZ image is set to 1400-900. I want to make all the wallpapers the save size without having to perform the task by selecting one image at a time.

If all the images are in the same directory, and you know for sure that you want all of them to be a certain dimension, say 1370px wide, and they are all JPG files, then you could use the command:

mogrify -path OUTPUT-PATH -resize 1370x *.jpg

That will resize all the .jpg images in the directory to be 1370px wide, maintaining the same aspect ratio, and saving them to the OUTPUT-PATH. If there is already a sub-folder called "output" for instance, then the command would look like:

mogrify -path output -resize 1370x *.jpg

Akkana Peck
2015-04-01 20:29:06 UTC (about 9 years ago)

Gimp 2.8 on Linux - Image/wallpaper resizing

Michael asked:

I have a long list of images (wallpapers/backgrounds). Just for the sack of argument, let's say that I have 500 images. Can I perform a "bulk" image resizing by selecting all the images and have Gimp perform a resizing?

Pat David writes:

This is a task likely better suited to a different tool, such as Imagemagick (http://www.imagemagick.org/) convert or mogrify.

I agree on ImageMagick and use it a lot (usually inside other scripts), but for cases where you want to use GIMP, use David's Batch Processor: http://members.ozemail.com.au/~hodsond/dbp.html It works very well for cases like you describe.

...Akkana