TIFF generated in Illustrator looks different in IM

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
hobboy
Posts: 4
Joined: 2015-05-06T23:58:29-07:00
Authentication code: 6789

TIFF generated in Illustrator looks different in IM

Post by hobboy »

I'm new to ImageMagick and have been working with Illustrator CS6, which I'm also new to. I've come across some discrepancies between the display colours in different programs, and I'm trying to work out what is causing these. For example, with the following TIFF (which I did not generate).

https://www.dropbox.com/s/19yqxbbhu66xg ... g.tif?dl=0

In programs such as Illustrator, paint.net and windows photo viewer I see different colours (darker greens, lighter browns and greys) to IM, IrfanView and GIMP. I had a look at whether there we alpha levels using 'identify -verbose' , because I read in a different post that Illustrator adds extra things to tiffs, but there doesn't seem to be any (correct me if I'm wrong).

Would anyone be able to help me identify what is causing these differences? I doubt it's very complicated :).
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: TIFF generated in Illustrator looks different in IM

Post by snibgo »

You have a CMYK file with embedded profile that a printer can print. To view on a screen, it must first be converted to sRGB. Printers have colours that screens can't show, and vice versa (they have different gamuts).

A good way of converting with IM is:

Code: Select all

convert 2.0-Ch-Fig-2.25-g.tif -profile sRGB.icc z.png
But you might prefer it with an "-intent", which controls the gamut behaviour.
snibgo's IM pages: im.snibgo.com
hobboy
Posts: 4
Joined: 2015-05-06T23:58:29-07:00
Authentication code: 6789

Re: TIFF generated in Illustrator looks different in IM

Post by hobboy »

Thanks for the pointer, I've now had more of a look into this and I've found the appropriate profiles for input and output :)

edit: input for different figures (since this has an embedded one!)
Post Reply