imagearc ()
Posted: Fri Jan 09, 2004 9:30 am
header ("Content-type: image/png");
$im=imagecreate(200,100);
$white=imagecolorallocate($im,255,255,255);
imagecolortransparent($im,$white); // Making Image Transparent
$lightblue=imagecolorallocate($im,20,93,233);
imagearc($im,0,0,199,95,10,180,$lightblue);
imagepng($im);
imagedestroy($im);
can i write some thing else istead of header ("Content-type: image/png");
because the header is not working ....
and i dont now to much abut it
$im=imagecreate(200,100);
$white=imagecolorallocate($im,255,255,255);
imagecolortransparent($im,$white); // Making Image Transparent
$lightblue=imagecolorallocate($im,20,93,233);
imagearc($im,0,0,199,95,10,180,$lightblue);
imagepng($im);
imagedestroy($im);
can i write some thing else istead of header ("Content-type: image/png");
because the header is not working ....
and i dont now to much abut it