PHP ?? ?? ?? ????: ?? ?? ?? ? ??
???? ??? ? ????
???? ???? ??? ?, php.cn?? GD ????? ???? ??? ???? ??? ??? ??? ? ? ??? ? ????.
imagecreatetruecolor ??? ?? 100, 30? ?? ?? ?????
header('content-type: image/png');
PHP? ?? ???? ???? ???? png ???? ?????.
imagepeng($image);返回圖片 imagedestroy($image);
??? ??? ???? ???? ?? ?? ???? ?????
imagecolorallocate ?? ?? ??? ???
$bgcolor = imagecolorallocate($image,255,255,255);//#FFFFFFFFFFFF
?? ??? ????
imagefill($image,0,0,$bgcolor);
?? ?? ??? ?????
??? ?? ??? ? ??? ?? ???? ??? ???????
<?php $image = imagecreatetruecolor(100,30); $bgcolor = imagecolorallocate($image,000,255,255);//#FFFFFFFFFFFF imagefill($image,0,0,$bgcolor); header('content-type: image/png'); imagepng($image); //銷毀 imagedestroy($image); ?>
??:
imagecreatetruecolor? ?? ??? ??? ?????
??? ?? ? ?? ??? ?? ???? ??? ???