Page 1 of 1

Error in ImageMagick 6.3.2 Q16

Posted: 2007-03-04T04:32:05-07:00
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.

Re: Error in ImageMagick 6.3.2 Q16

Posted: 2007-03-04T10:46:36-07:00
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

Re: Error in ImageMagick 6.3.2 Q16

Posted: 2007-03-04T12:29:18-07:00
by halcongris
Many thanks. I found the necessary profiles and did as you suggested. It now works fine. Thanks again.