这不是直接PHP
错误,因为您发布的代码是正确的。这很可能是由外部的一些额外数据引起的php tags.
如果这是您在文件中的全部内容,它可以工作
<?php
$image = ImageCreate(200, 50);
$background_color = ImageColorAllocate($image, 255, 255, 255); // white
$gray = ImageColorAllocate($image, 204, 204, 204); // gray
ImageFilledRectangle($image, 50, 10, 150, 40, $gray);
header('Content-type: image/png');
ImagePNG($image);
?>
但这不会
<?php
//see the new line outside the php tags below? this will break the image.
?>
<?php
$image = ImageCreate(200, 50);
$background_color = ImageColorAllocate($image, 255, 255, 255); // white
$gray = ImageColorAllocate($image, 204, 204, 204); // gray
ImageFilledRectangle($image, 50, 10, 150, 40, $gray);
header('Content-type: image/png');
ImagePNG($image);
//these extra lines wont matter, because they are inside the php tags.
?>
确保 . 之前没有多余的空格或换行符<?php
。如果您在此代码之前有一个包含文件,还要检查该文件(文件)以确保外部没有数据<?php ?>