כתבתי לך פונקצייה קטנה שעושה את זה יותר בקלות:
PHP קוד:
function create_color_from_hex($hex, $gd) {
return imagecolorallocate($gd, hexdec(substr($hex, 0, 2)), hexdec(substr($hex, 2, 2)), hexdec(substr($hex, 4, 2)));
}
תשתמש בזה ככה:
PHP קוד:
imagesetpixel($img, 5, 5, create_color_from_hex("FFFFFF", $img));