Open
Bug 880271
Opened 12 years ago
Updated 3 years ago
Inconsistent color management
Categories
(Core :: Graphics: Color Management, defect)
Tracking
()
UNCONFIRMED
People
(Reporter: david.johnstone, Unassigned)
References
Details
User Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0 (Beta/Release)
Build ID: 20130511120803
Steps to reproduce:
I created a handful of elements and made them red (#ff0000) in various ways, using:
* CSS
* background-color: #f00
* background: linear-gradient(#f00, hsla(0, 100%, 50%, 1))
* background: radial-gradient(#f00, hsl(0, 100%, 50%))
* background: url(no-profile.png) // image with no colour profile
* background: url(embedded-profile.jpg) // image with with colour profile
* Canvas
* c.fillStyle = '#f00'; c.fillRect(0, 0, 200, 200);
* SVG
* fill: rgb(255, 0, 0)
* Image
* <img src="no-profile.png"> // image with no colour profile
* <img src="embedded-profile.jpg"> // image with with colour profile
I have set gfx.color_management.mode to 1 (full colour management) and have a properly calibrated wide gamut monitor.
Here is a test page that demonstrates this: https://dl.dropboxusercontent.com/u/41899939/colour-management.html
Actual results:
The boxes with with colour set by linear-gradient, radial-gradient and a canvas displayed with a very vivid red (i.e., without colour management). The rest were showing the correct red.
Here's a screenshot, with an embedded profile (the differences may not be visible on your screen): https://dl.dropboxusercontent.com/u/41899939/screenshot-embedded-profile.jpg
Here's another screenshot, as sRGB with no embedded profile (the colours aren't right, but on my screen, imagine the orange squares are red, and the red ones are a very vivid red): https://dl.dropboxusercontent.com/u/41899939/screenshot-srgb.jpg
Expected results:
All of the boxes should appear to be the same colour.
| Reporter | ||
Updated•12 years ago
|
Component: Untriaged → GFX: Color Management
Product: Firefox → Core
Comment 1•12 years ago
|
||
Border colors are not managed too.
Test page: https://dl.dropboxusercontent.com/u/8716756/colors.html
Screenshot: https://dl.dropboxusercontent.com/u/8716756/colors.jpg
Comment 3•12 years ago
|
||
This is still actual in Firefox 26.
Comment 5•7 years ago
|
||
Looks like this is still the case in Firefox 66.0.3 on macOS 10.14.4:
https://i.imgur.com/s1FybEl.png
Both canvas charts are using the same fill and stroke styles, yet the Firefox's image (on the right) appears a lot more saturated than Chrome's.
Confirmed in 67.0.4 on 10.14.4. Problem is really obvious on native Macbook (touchbar) screen. External monitors are fine. I've tried switching color profiles on my display and changing firefox gfx management settings but both do not solve the problem.
Comment 7•5 years ago
|
||
This sounds like a (reverse) dupe of bug 1616444 but it's hard to be sure with all of OP's testcases 404ing.
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•