伙计们,我有大约 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);
浏览器中的输出是