no decode delegate for tif files and (Win32)

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
RXGX

Re: no decode delegate for tif files and (Win32)

Post by RXGX »

Automatic color conversion was taken out for better profile control. To correctly convert CMYK images to RGB, I have to use color profiles. ImageMagick requires LittleCMS to translate color profiles. I wish I could help you with LittleCMS, but I had my contractor compile it. Anway, here is one conversion that I commonly perform:

Code: Select all

convert -profile cmyk.icc -profile rgb.icc {name}.pdf {name}.jpg
In the above code example, the CMYK profile is USWebCoatedSWOP.icc and the RGB profile is AdobeRGB1998.icc. You can find these profiles through Google/Blingo or search your computer (Windows+F) for "*.icc,*.icm" (without the quotes.)
Post Reply