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.
Error in ImageMagick 6.3.2 Q16
Re: Error in ImageMagick 6.3.2 Q16
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
Many thanks. I found the necessary profiles and did as you suggested. It now works fine. Thanks again.