Mobile app version of vmapp.org
Login or Join
Murray976

: Horizontally flip a lot of pictures in GIMP I have like a thousand pictures that I would like to flip them horizontally in GIMP, do you know how I can achieve that? I guess I will have

@Murray976

Posted in: #BatchProcessing #Gimp

I have like a thousand pictures that I would like to flip them horizontally in GIMP, do you know how I can achieve that?

I guess I will have to use some kind of a batch process, but I'm really not familiar with it.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Murray976

2 Comments

Sorted by latest first Latest Oldest Best

 

@Megan533

For batch process there is the David's Batch Processor GIMP plugin

and the second is BIMP. Batch Image Manipulation Plugin.

Good luck!

10% popularity Vote Up Vote Down


 

@Cofer715

You can use ImageMagick or GraphicsMagick:

magick mogrify -flop *.png
gm mogrify -flop *.png


GraphicsMagick seems to be about 70% faster for this
operation on a directory full of out-of-the-camera JPEGs.

Use -flip to flip top-to-bottom instead of left-to-right.

Note that the images will be recompressed by "mogrify".
If you are working with JPEG images, you can use the "jpegtran" application (which is part of the libjpeg distribution) to rotate or flip images losslessly. If you are working with PNG or GIF, this recompression is unavoidable.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme