Convert PSD to PNG keeping layer names.
Posted: 2018-02-13T02:15:44-07:00
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:
Is it possible to get the name of the layers and use that as current PNGFILE?
Thanks
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
Thanks