0

伙计们,我有大约 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);

浏览器中的输出是 没有图像

4

2 回答 2

2

尝试使用您的代码将 php 文件的编码设置为不带 BOM 的 UTF-8(例如在 Notepad++ 中)。

在此处输入图像描述

于 2012-11-29T18:32:50.483 回答
0

您的代码工作正常,图像显示。很可能您的 GD 库没有按预期工作。尝试这个

$image = imagecreatetruecolor(400, 300) or die('Cannot Initialize new GD image stream');
于 2012-08-08T21:56:40.857 回答