Gimp-Forum.net

Full Version: How to mass export PSD files into PGN files?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. I would like to mass export a folder of PSD files into PNG files

How can I do that?

I use windows 10 x64 

Gimp version is 2.10.30
(01-13-2022, 09:32 PM)MonsterMMORPG Wrote: [ -> ]Hello. I would like to mass export a folder of PSD files into PNG files

How can I do that?

I use windows 10 x64 

Gimp version is 2.10.30

GIMP is probably not the best tool to use for this. Try an internet search for:

convert psd png windows
(01-13-2022, 09:32 PM)MonsterMMORPG Wrote: [ -> ]Hello. I would like to mass export a folder of PSD files into PNG files

How can I do that?

I use windows 10 x64 

Gimp version is 2.10.30

Typically, you would use a shell script (.BAT for you) that uses ImageMagick,  that would be easier and faster then using Gimp.
If you want a GUI then try XnViewMP There are installers here: https://newsgroup.xnview.com/viewtopic.php?f=82&t=42885
Looks like this: https://i.imgur.com/PDiTKTC.jpg

One problem with PSD files is, they are more often than not multi-layer, and png are single layer. What you get, might not be a true flattened image.

When it comes to ImageMagick it looks straight forward, a command magick in.psd out.png
....unless there are multiple PSD layers where you get a series of files out-0.png , out-1.png , out-2.png ...out-n.png
(01-14-2022, 08:23 AM)Ofnuts Wrote: [ -> ]
(01-13-2022, 09:32 PM)MonsterMMORPG Wrote: [ -> ]Hello. I would like to mass export a folder of PSD files into PNG files

How can I do that?

I use windows 10 x64 

Gimp version is 2.10.30

Typically, you would use a shell script (.BAT for you) that uses ImageMagick,  that would be easier and faster then using Gimp.

Could you share that .BAT file?