digitalroamer
Programmer
<?
$id = imagecreate(100,100);
$red = imagecolorallocate($id,255,0,0);
imagefill($id,0,0,$red);
imagewbmp($id);
imagedestroy($id);
?>
it seems the format doesn't match. But the gd version2 doesn't support gif any more. What should I do to see the picture? Thanks.
$id = imagecreate(100,100);
$red = imagecolorallocate($id,255,0,0);
imagefill($id,0,0,$red);
imagewbmp($id);
imagedestroy($id);
?>
it seems the format doesn't match. But the gd version2 doesn't support gif any more. What should I do to see the picture? Thanks.