rgb/hsl transformation inaccurate
rodneyrehm opened this issue · 4 comments
Hey there,
jQuery.Color(jQuery.Color("rgb(250, 234, 215)").toHslaString()).toRgbaString()
// "rgb(250,234,214)"
so converting an RGB to HSL and back might not yield the same color. Is this a problem with your implementation or with HSL per se. I couldn't find any pointer on floating point specificity in CSS Color Module: HSL but assume floats are accepted as well, as they are hinted (float range 0.0% - 100.0%
) in Example VII.
Not yet sure if this a bug or not :/
+1
It's a problem with HSL.
Both appear to have 3 channels of 8 bits precission each; 24 bits in total.
For RGB, this truely means 2^24 unique colors.
But if you play around with a colorpicker in HSL (or HSV/HSB) mode you'll see some particular effects:
- If L is zero, the color will always be black, regardless of the values of H or S.
- If S is zero, the color will always be a grayscale, regardless of the value of H.
This means that for certain of those combinations of H, S and L, the colors are identical. This means that for HSL, you have less than 2^24 colors.
It should be obvious now, that there is a loss of information when converting from RGB to HSL and back to RGB, so there is a chance the color might change a small bit.
This is not just an implementation issue; it's a result of how HSL color space works. If you use floats, you'd have the same problem (though less noticable).
Closing per @vanderlee's comment.
lol