也许你能帮助我。我需要一个函数来从 _GET 或 _POST 字符串绘制折线路径并将生成的图像保存到文件夹中。例如,我的链接将如下所示:http: //img.domain.com/ ?points = 1,5,-70,300,250,500... 如果图像已生成且未更改 -> 从文件夹加载。否则生成新的。
我的代码在这里:
if (isset($_POST['points'])) {
$points = $_POST['points'];
$image = imagecreate(200, 200);
$white = imagecolorallocate($image, 255, 255, 255);
$black = imagecolorallocate($image, 0, 0, 0);
... polyline path drawing here...?
imageline($image, 10, 10, 10, 190, $black);
header('Content-Type: image/png');
imagepng($image);
imagedestroy($image);
... how to save it to the server?
}
谢谢。