problem converting psd files with transparency

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
urbanDev

problem converting psd files with transparency

Post by urbanDev »

I am trying to decrease the resolution of some psd files. The desired result is also psd. But it seems "convert" cannot handle the transparency in the proper way if the source file is psd. Taking a look into the metadata it appears the Num Channels is 3 instead of 5 (CMYK + transparency = 5)

I am using ImageMagick 6.5.0-2.

I tried this: 'convert source.psd -alpha on result.psd'

And I tried the rest of the alpha options also like '-alpha set' etc.

Does anyone have any thoughts?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: problem converting psd files with transparency

Post by fmw42 »

just a guess, but try

convert image.psd -channel cmyka -alpha on output.psd
urbanDev

Re: problem converting psd files with transparency

Post by urbanDev »

Thank you for the idea. Unfortunately there is no success I got same output.

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

Re: problem converting psd files with transparency

Post by fmw42 »

I would suggest you post your image so that the IM folks can review it and/or test with it.
urbanDev

Re: problem converting psd files with transparency

Post by urbanDev »

You're right but I just created a test image like this.

http://urbanstudionyc.com/cmykTransparent.psd
Post Reply