Simple function to parse RGB value
Here’s a simple function to parse RGB string (#00ff00) into array, so it can be used in GD functions.
Hope it can save a little time for you.
list($r, $g, $b)= parse_RGB("#123456");
function parse_RGB($color)
{
$r= hexdec(substr($color, 1, 2));
$g= hexdec(substr($color, 3, 2));
$b= hexdec(substr($color, 5, 2));
return array($r, $g, $b);
}
1 Comment »
RSS feed for comments on this post. TrackBack URL









Does anyone have experience of mobile broadband coverage in Cornwall? I travel down their regularly and am thinking about signing up with a mobile broadband provider but have heard coverage can be poor in some rural areas. I’ve been looking at various different mobile broadband providers here: http://www.broadband-expert.co.uk/broadband/mobile and am leaning towards Vodafone.
Any advice would be great. I don’t want to sign up and find I’m paying for a product that doesn’t work!