Error in ImageMagick 6.3.2 Q16

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
halcongris

Error in ImageMagick 6.3.2 Q16

Post by halcongris »

The following produces A perfect JPG using IM 6.2.5 but garbled colours in 6.3.2:

convert -colorspace RGB test.tif article.jpg

Is there a way to produce a correctly coloured JPG from this TIF in 6.3.2?
Preferably using PerlMagick.

The test.tif is available at http://www.2000.com/im/test.tif if anyone wants to try it (it's 4MB).

A fix would be much appreciated.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Error in ImageMagick 6.3.2 Q16

Post by magick »

You need a proper CMYK Swop and sRGB color profile. Something like
  • convert test.tif -profile Swop.icm -profile sRGB.icc test.jpg
halcongris

Re: Error in ImageMagick 6.3.2 Q16

Post by halcongris »

Many thanks. I found the necessary profiles and did as you suggested. It now works fine. Thanks again.
Post Reply