HEX to RGB
1 2 function hexToRGB ( hex:Number ){ 3 var returnObj:Object = new Object(); 4 var returnObj .r = hex >> 16; 5 var temp = hex ^ r << 16; 6 var returnObj .g = temp >> 8; 7 var returnObj .b = temp ^ g << 8; 8 9 return returnObj; 10 }
DZone Snippets > edolecki > RGB
13396 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
1 2 function hexToRGB ( hex:Number ){ 3 var returnObj:Object = new Object(); 4 var returnObj .r = hex >> 16; 5 var temp = hex ^ r << 16; 6 var returnObj .g = temp >> 8; 7 var returnObj .b = temp ^ g << 8; 8 9 return returnObj; 10 }
1 2 function RGBToHex (r, g, b ){ 3 var hex = r << 16 ^ g << 8 ^ b; 4 return hex; 5 }