I was looking on info on new displays and came across multiple threads saying that photos show over-saturated on IE when using the very popular wide gamut backlit displays. Word is Firefox displays the colors correctly.
If you are using Vista this motorcycle should be red, not blue:

In IE7 and Opera on Vista it appears blue. If you save the image to disk then open it in Photo gallery it is red. ![]()
source: http://blogs.msdn.com/color_blog/
-
-
huh... in photo and fax viewer on xp, it's green!
-
In Firefox it also appears blue.
Also of note: in Photoshop CS3 it appears green (no I'm not joking).
EDIT: My guess would be there's some colour profiling data in the file that different viewers are interpreting differently. -
oh and ff3 on xp = Blue.
-
That's awesome! It's blue here in IE6 on XP. I wonder what happens when I try it in Vista at home. If you open it in Paint.NET, the thumbnail in the file open dialog is green, but Paint.NET opens it as blue!
Taking a screenshot captures it as blue, even in photo & fax viewer. Interesting. -
Blue with Opera & IE7 on Vista.
Saved it to my Desktop the icon image was Green then turned Red.
Opened in Photo Gallery, it was Red. -
Your guess would be correct according to the blog post referenced in the original postSven Groot said:In Firefox it also appears blue.
Also of note: in Photoshop CS3 it appears green (no I'm not joking).
EDIT: My guess would be there's some colour profiling data in the file that different viewers are interpreting differently.
-
Vista Photo Gallery = Red, Thumb = GreenDCMonkey said:
Your guess would be correct according to the blog post referenced in the original postSven Groot said:*snip*
Live Photo Gallery = Red, Thumb = Green
IE7 = Blue
Vista Paint = Blue
Paint .Net = Blue
Picture Viewer from QuickTime = Blue
.Net 3.0 WPF = Red (I build the photo viewer using WPF)
System.Drawing.Image imgPhoto = new Bitmap(inPath);
This one is Blue. (This is my code for creating the thumb image).
The red does look more adaquate. Blue and Green looks really weird once I see the Red result. -
Its really very simple if you read the blog entry supplied by the OP
.. -
It shows up blue on Firefox 3 (Mac). It shows up green on Safari 3 (Mac). When I save it to desktop, it shows up green in Preview.
-
DCMonkey said:
Your guess would be correct according to the blog post referenced in the original postSven Groot said:*snip*
I hadn't read that but it was the most logical explanation. I also guessed that the image had been deliberately engineered to show this effect (not a big guess considering an image that accidentally swaps entire colour channels in different viewers is almost impossible). It's nice to see my guesses are right.
In IE8 beta 1 (on XP) the bike appears blue, so it appears that IE8, at least in beta 1, still ignores colour profiles. -
What's the point of color profile anyway?Sven Groot said:DCMonkey said:*snip*I hadn't read that but it was the most logical explanation. I also guessed that the image had been deliberately engineered to show this effect (not a big guess considering an image that accidentally swaps entire colour channels in different viewers is almost impossible). It's nice to see my guesses are right.
In IE8 beta 1 (on XP) the bike appears blue, so it appears that IE8, at least in beta 1, still ignores colour profiles. -
It's interesting but using a JPEG for this is a garbage test.
-
How so? It's intended to show which colour profile is in use, which it seems to do rather effectively.wisemx said:It's interesting but using a JPEG for this is a garbage test.
-
Correct but why not use an image that retains everything for the tests?AndyC said:
How so? It's intended to show which colour profile is in use, which it seems to do rather effectively.wisemx said:*snip*
This tests nothing more than the WCS profile, seems odd to use a JPEG.
I'd expect to at least use a flat PNG for this.
-
What they should of done was interlaced text that says:wisemx said:
Correct but why not use an image that retains everything for the tests?AndyC said:*snip*
This tests nothing more than the WCS profile, seems odd to use a JPEG.
I'd expect to at least use a flat PNG for this.
BAD
BETTER
BEST
-
I think they should have done one of those colorblindness-tests, with the colored dots. "If you see an eight, you are using Vista."stevo_ said:
What they should of done was interlaced text that says:wisemx said:*snip*
BAD
BETTER
BEST

-
magicalclick said:
Vista Photo Gallery = Red, Thumb = GreenDCMonkey said:*snip*
Live Photo Gallery = Red, Thumb = Green
IE7 = Blue
Vista Paint = Blue
Paint .Net = Blue
Picture Viewer from QuickTime = Blue
.Net 3.0 WPF = Red (I build the photo viewer using WPF)
System.Drawing.Image imgPhoto = new Bitmap(inPath);
This one is Blue. (This is my code for creating the thumb image).
The red does look more adaquate. Blue and Green looks really weird once I see the Red result.When using System.Drawing you can pass true for the useIcm parameter of Bitmap constructor (or Image.FromFile):
Bitmap b = new Bitmap("bgrredducatiwcstesttrisiz5.jpg", true);
If you do that it will use the color management information contained in the image file and you'll get the red variant.
Fun stuff
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.