伙计们,我有大约288分,他们的X,Y坐标和分配给他们的值。我需要象征性地展示这一点。我尝试了gd和imagettftext,但是即使我已经安装并配置了gd,绘制空白图像的简单代码也无法正常工作。
header('Content-Type: image/png');
$image = imagecreatetruecolor(400, 300);
// Allocate a color for the polygon
$col_poly = imagecolorallocate($image, 255, 255, 255);
// Draw the polygon
imagepolygon($image, array(
0, 0,
100, 200,
300, 200
),
3,
$col_poly);
// Output the picture to the browser
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
浏览器中的输出是
答案 0 :(得分:2)
尝试使用您的代码将php文件的编码设置为 UTF-8无BOM (例如在Notepad ++中)。
答案 1 :(得分:0)
您的代码正常,图片显示。很可能你的GD库没有按预期工作。试试这个
$image = imagecreatetruecolor(400, 300) or die('Cannot Initialize new GD image stream');