HEX to RGB
function hexToRGB ( hex:Number ){ var returnObj:Object = new Object(); var returnObj .r = hex >> 16; var temp = hex ^ r << 16; var returnObj .g = temp >> 8; var returnObj .b = temp ^ g << 8; return returnObj; }
DZone Snippets > edolecki > HEX
12388 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
eric e. dolecki www.ericd.net
function hexToRGB ( hex:Number ){ var returnObj:Object = new Object(); var returnObj .r = hex >> 16; var temp = hex ^ r << 16; var returnObj .g = temp >> 8; var returnObj .b = temp ^ g << 8; return returnObj; }
function RGBToHex (r, g, b ){ var hex = r << 16 ^ g << 8 ^ b; return hex; }