Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Does anyone have a macro or function for converting a 24-bit RGB-color to a 16-bit (5.6.5) color? Thanks in advance! Erik
( (GetRValue(cr) >> 3) << 11 ) | ( (GetGValue(cr) >> 2) << 5 ) | (GetBValue(cr) >> 3)
Thanks a lot! What about 16-bit 1.5.5.5 translation? Thanks again.