Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
batch scale down images if largest dimension is greater than X
#1
Question 
Hi all,

I am trying to scale down a number of images (~ 100) of different dimensions down to a specific maximum size (for example 1920px as width).

I searched for this but didn't find any plugin or so which allows me to do this.

I tried using Batcher but it's missing an constraint option on image dimensions.

I am not an expert user of gimp, but maybe there is some script-fu (?) I am missing for solving this issue.

Thank you all in advance for your help.
Reply
#2
Gimp 3.0 or even 2.10 is not the best tool for this. Use imagemagick on a folder of images. Careful with mogrify it re-writes the images. Best work on copies.

Code:
mogrify -geometry 1920x   *.png
Reply


Forum Jump: