advanced code snippet search
Unreal on 08/05/09
hex to RGB
08/05/09 01:30am
2 people have marked this snippet as a favorite
vali29umang_nine
URL: http://www.devwords.com
Another hex to RGB function. Probably pointless me sharing it but ah well.
function hex2rgb($hex){ $rgb = array(); $rgb['r'] = hexdec(substr($hex, 0, 2)); $rgb['g'] = hexdec(substr($hex, 2, 2)); $rgb['b'] = hexdec(substr($hex, 4, 2)); return $rgb;} Usage:print_r(hex2rgb('#009999'));Returns:Array( [r] => 0 [g] => 9 [b] => 153)
Report this snippet Tweet
Comment:
You need to login to post a comment.