Massive image edit program?

Archive of the old editing forum
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.
Locked
User avatar
Ravick
Posts: 2049
Joined: Sun Aug 22, 2010 10:59 pm
Location: Tubarão, Brasil
Contact:

Massive image edit program?

Post by Ravick »

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.
User avatar
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?

Post by wildweasel »

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.
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.
User avatar
cocka
Posts: 1520
Joined: Sat Jul 02, 2011 7:21 am
Location: Hungary

Re: Massive image edit program?

Post by cocka »

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:

Code: Select all

convert -flip oldname1.png newname1.png
etc.. If you send the files I'll generate a batch file for you. :)
User avatar
Ravick
Posts: 2049
Joined: Sun Aug 22, 2010 10:59 pm
Location: Tubarão, Brasil
Contact:

Re: Massive image edit program?

Post by Ravick »

Thanks! I'll take a look! :)
User avatar
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?

Post by Marisa the Magician »

It would be easier with for loops or something.
User avatar
cocka
Posts: 1520
Joined: Sat Jul 02, 2011 7:21 am
Location: Hungary

Re: Massive image edit program?

Post by cocka »

It would be easier with for loops or something.
Then just copy all your images to another directory and create a batch file with the following content:

Code: Select all

mogrify -path "the path of your copied images" -flip *.png
This will flip all your images at once.
Locked

Return to “Editing (Archive)”