Color Shifting with ImageMagick

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?".
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: Color Shifting with ImageMagick

Post by dlemstra »

We recently added some options to preserve PSD information. Can you give the command below a try after you have upgraded to the most recent version:

Code: Select all

convert input.psd -define psd:additional-info=all -define psd:preserve-opacity-mask=true output.psd
And when you convert to a PNG/JPEG you should just read the "merged image" (first image in the list):

Code: Select all

convert input.psd[0] output.jpg
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
pssvarma8881
Posts: 45
Joined: 2016-09-18T15:42:46-07:00
Authentication code: 1151

Re: Color Shifting with ImageMagick

Post by pssvarma8881 »

Hi

As suggested we tried the given command.We are still observing the alpha channels missing.

Regards,
P.S.S.Varma
Post Reply