Convert PSD to PNG keeping layer names.

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
JACLEMGO
Posts: 1
Joined: 2018-02-13T02:06:14-07:00
Authentication code: 1152

Convert PSD to PNG keeping layer names.

Post by JACLEMGO »

Hi, first post here.

I use ImageMagick with CLI, I have a bash script which converts all PSD files in a folder to PNG, everything works, expect, I can't seem to get information on the current layer being exported.

Here is the command:

Code: Select all

convert -dispose Background $PSDFILE -layers coalesce $PNGFILE
Is it possible to get the name of the layers and use that as current PNGFILE?

Thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Convert PSD to PNG keeping layer names.

Post by fmw42 »

ImageMagick does not understand layer names.
Post Reply