Note Submitter: Les
----
My little addition to the hex to RGB color festival goin' on up in here:
function set_hex_color($image_handle, $hex_code) {
$hex_code = eregi_replace("#","",$hex_code);
return ImageColorAllocate($image_handle, array(hexdec(substr($hex_code, 0, 2)),hexdec(substr($hex_code, 2, 2)),hexdec(substr($hex_code, 4, 2)));
}