17 October 2011

RGB to HEX color conversion

The simplest way to convert a RGB color value to Hexadecimal color values.

private function toHexValue(r:int, g:int, b:int):uint 
{
 var hex:uint = r << 16 ^ g << 8 ^ b;
 return hex;
}

0 comments:

Post a Comment