Convert - LCMS color profile library is not available

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
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Convert - LCMS color profile library is not available

Post by magick »

The proper way to convert from one colorspace to another is with color profiles, however, the LCMS delegate library is required. When you built ImageMagick, the configure script did not find the LCMS library or its headers in well known paths such as /usr/lib or /usr/local/lib. Rebuild ImageMagick and include LCMS support or use the -colorspace option:
  • convert cmyk.png -colorspace rgb rgb.jpg
Post Reply