N'oubliez l'aide intégrée à CF2.5. Ils ont fait du super boulot, on aurait tort de s'en priver :P
[quote]A RGB value can be calculated from its Red, Green, and Blue components by the following formula:
RGB_Value = B*65536 + G*256 + R.
To extract the R, B and B components from a RGB value, use:
R = RGB_Value AND 255
G = (RGB_Value / 256) AND 255
B = (RGB_Value / 65536) AND 255