cmyk coverted properly to rgb on windows but not on linux

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
sonusdream

cmyk coverted properly to rgb on windows but not on linux

Post by sonusdream »

I have succesfully converted a cmyk image to rgb image on windows using the following command:

Code: Select all

convert inputfile.jpg -profile RGB_PROFILE outputfile.jpg
when i tried using this command on linux, the image is not converted to rgb instead it retains its previous colorspace which is cmyk.

I am not sure about this but i think the problem is, the rgb profile is not properly attached on the image.

Other informations:

The image magick is both 6.2.9 version
I used the windows installer when I installed IM on windows
I manually compiled IM when I installed IM on linux.

hope you can help me with this


regards,
sonusdream
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

ImageMagick requires the LCMS delegate library to convert between two color profiles. Type
  • identify -list configure
If -llcms is not a LIBS value, download LCMS and rebuild ImageMagick to include support for this library.
Post Reply