//长和高
$_width = 75;
$_height = 25;//创建一张图像
$_img = imagecreatetruecolor($_width,$_height);//白色
$_white = imagecolorallocate($_img,255,255,255);//填充
imagefill($_img,0,0,$_white);
//输出图像
header('Content-Type: image/png');
imagepng($_img);//销毁
imagedestroy($_img);
在火狐浏览器中
以上代码一些,整个页面的背景变成灰色了,制作的图像在中间。但我看的教程是正常的,其他浏览器也是正常的。