PhotoCD conversion and Color Profile

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
afatac
Posts: 9
Joined: 2009-12-10T03:28:46-07:00
Authentication code: 8675309

PhotoCD conversion and Color Profile

Post by afatac »

I am trying to convert a PhotoCD image to TIFF. This command works:

Code: Select all

convert -size 3072x2048 Impatiens.pcd -profile sRGB.icc impatiens.tif
But I want to include one of the PhotoCD color profiles as a source profile, so I tried this:

Code: Select all

convert -size 3072x2048 Impatiens.pcd -profile pcdcnycc.icm -profile sRGB.icc impatiens.tif
An error message is shown and the profile conversion does not take place.

convert.exe: Color profile operates on another colorspace `icc' @ error/profile.
c/ProfileImage/5942.

Any idea what is wrong with it?

The sample file can be downloaded from here.

I believe the color profile pcdcnycc.icm can be found in your system if you have installed Photoshop CS3 or earlier.
Post Reply