[6.7.7-6] converting tiff to jpg results in red(ish) overlay

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
skithund
Posts: 1
Joined: 2012-07-05T00:38:18-07:00
Authentication code: 13

[6.7.7-6] converting tiff to jpg results in red(ish) overlay

Post by skithund »

When converting TIFF to JPG, I'm getting red(ish) overlay on result image. TIFF is saved from Photoshop CS5 and seems to have transparent background and guides in it.

Bug in Imagemagick or something wrong with TIFF?

"convert front_928.tif front_928.jpg"

Also tried with "-alpha off" and "+matte" with no effect.

Original: https://dl.dropbox.com/u/1935333/front_928.tif
Converted: https://dl.dropbox.com/u/1935333/front_928.jpg
"identify -verbose": https://dl.dropbox.com/u/1935333/front_928.txt
Version: ImageMagick 6.7.7-6 2012-06-08 Q16 http://www.imagemagick.org
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: [6.7.7-6] converting tiff to jpg results in red(ish) ove

Post by fmw42 »

Your image is a YCbCr image in a shell of sRGB with an Adobe RGB profile. See the verbose info
...
tiff:photometric: YCBCR
... Profile-icc: 560 bytes
Description: Adobe RGB (1998)


try this

convert front_928.tif -set colorspace YCbCr -colorspace RGB front_928.jpg
Post Reply