Gimp-Forum.net
How to mass export PSD files into PGN files? - Printable Version

+- Gimp-Forum.net (https://www.gimp-forum.net)
+-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP)
+--- Forum: General questions (https://www.gimp-forum.net/Forum-General-questions)
+--- Thread: How to mass export PSD files into PGN files? (/Thread-How-to-mass-export-PSD-files-into-PGN-files)



How to mass export PSD files into PGN files? - MonsterMMORPG - 01-13-2022

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


RE: How to mass export PSD files into PGN files? - programmer_ceds - 01-13-2022

(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


RE: How to mass export PSD files into PGN files? - Ofnuts - 01-14-2022

(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.


RE: How to mass export PSD files into PGN files? - rich2005 - 01-14-2022

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


RE: How to mass export PSD files into PGN files? - MonsterMMORPG - 01-14-2022

(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?