PHP NOTES 30 NOTE 31144 DELETED FROM FUNCTION IMAGECOLORALLOCATE BY DIDOU
Date: 1 Jul 2003 08:21:16 -0000

Subject: note 31144 deleted from function.imagecolorallocate by didou
From: didou@no-spam

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)));

}