Hi..
can anyone out there have an idea on how to convert my script of creating gif pics on the fly using gd 1.4 to gd 1.83 on php4
below is sample of my code
<?
header ("Content-type: image/gif");
$im = imagecreate ($w,$h);
$bg = imagecolorallocate($im, $bg1,$bg2,$bg3);
$white = imagecolorallocate($im, 100,140,199);
$gray = imagecolorallocate($im, 99,99,99);
imagettftext($im,$s,0,$x1,$y1,$gray,"ttf/arialbold.ttf",$title);
imagettftext($im,$s,0,$x2,$y2,$white,"ttf/arialbold.ttf",$title);
imagegif($im);
?>
will appretiate your elp
thank you
Boon