为什么改变不了画布的背景色?
<?php
$image = imagecreatetruecolor(100, 30);
$bgcolor = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $bgcolor);
header('content-type: image/png');
imagepng($image);
imagedestroy($image);
?><?php
$image = imagecreatetruecolor(100, 30);
$bgcolor = imagecolorallocate($image, 255, 255, 255);
imagefill($image, 0, 0, $bgcolor);
header('content-type: image/png');
imagepng($image);
imagedestroy($image);
?>2015-07-30
举报