Reputation: 1728
This is one of the cross browser quirks that just makes one laugh.
Compare this in IE and Chrome/FF: https://i.sstatic.net/5VwNJ.jpg
Notice how in Chrome/FF the color palette is almost inverted to what is shown in IE.
Has anyone experienced this? The image was rescaled with a custom built .net image resizer. I'm not the programmer but just trying to find out if anyones seen this before.
Upvotes: 0
Views: 428
Reputation: 5379
Your JPEG image has a device-specific color profile https://i.sstatic.net/gl6Fm.png assigned to it. If used on the web, a standard color profile such as sRGB should be assigned instead. On Windows, color profiles in JPEG files are parsed and used in Chrome and Firefox according to the current monitor profile. In contrast, IE (as far as I know up to IE9) just ignores the monitor's color profile and uses a standard sRGB profile instead. This is mentioned online, for instance, http://help.fotopedia.com/entries/22366773-Color-management-beware-of-IE9.
You can convert your original JPEG files to use a standard sRGB profile. The color should then be correct. For example, a converted file is viewable here: https://i.sstatic.net/fvuI8.jpg
Upvotes: 1