Massive image edit program?
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Massive image edit program?
Just wondering: Are there programs that allow me to, lets say, invert a huge group of images upside-down? I mean, like invert a whole group od sprites instead of manking it one by one.
- wildweasel
- Posts: 21706
- Joined: Tue Jul 15, 2003 7:33 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): A lot of them
- Graphics Processor: Not Listed
- Contact:
Re: Massive image edit program?
The Batch Processing feature of Irfanview has a handful of "advanced options" you can use; this includes rotating/flipping images, inverting the colors, resizing, decreasing color depth, and a bunch of others.Ravick wrote:Just wondering: Are there programs that allow me to, lets say, invert a huge group of images upside-down? I mean, like invert a whole group od sprites instead of manking it one by one.
Re: Massive image edit program?
Or just use ImageMagick and its flip command line option:
http://www.imagemagick.org/script/comma ... s.php#flip
After installing the program, you can create a batch file with a bunch of lines like this:
etc.. If you send the files I'll generate a batch file for you. 
http://www.imagemagick.org/script/comma ... s.php#flip
After installing the program, you can create a batch file with a bunch of lines like this:
Code: Select all
convert -flip oldname1.png newname1.png

Re: Massive image edit program?
Thanks! I'll take a look! 

- Marisa the Magician
- Banned User
- Posts: 3886
- Joined: Fri Feb 08, 2008 9:15 am
- Preferred Pronouns: She/Her
- Operating System Version (Optional): (btw I use) Arch
- Graphics Processor: nVidia with Vulkan support
- Location: Vigo, Galicia
- Contact:
Re: Massive image edit program?
It would be easier with for loops or something.
Re: Massive image edit program?
Then just copy all your images to another directory and create a batch file with the following content:It would be easier with for loops or something.
Code: Select all
mogrify -path "the path of your copied images" -flip *.png