What is the most efficient way to do this?
|
|
|||||
|
|
|
Real answer: Depends on what kind of hexadecimal color value you are looking for (e.g. 565, 555, 888, 8888, etc), the amount of alpha bits, the actual color distribution (rgb vs bgr...) and a ton of other variables. Here's a generic algorithm for most RGB values using C++ templates (straight from ScummVM).
Here's a sample color struct for 565 (the standard format for 16 bit colors):
|
||
|
|
|
|
In python:
|
||
|
|
|
A hex value is just RGB numbers represented in hexadecimal. So you just have to take each pair of hex digits and convert them to decimal. Example: #FF6400 = RGB(0xFF, 0x64, 0x00) = RGB(255, 100, 0) |
||
|
|
|
just real quick: int r = ( hexcolor >> 16 ) && 0xFF; int g = ( hexcolor >> 8 ) && 0xFF; int b = hexcolor && 0xFF; int hexcolor = (r << 16) + (g << 8) + b; |
|||
|
