通常我使用以下代码从我的php脚本下载图像:
$imageurl='www.example.com/image.jpg'
$exten = substr($imageurl, -3);
$content = file_get_contents($imageurl);
$filename = './temp.'.$exten;
file_put_contents($filename, $content);
如何从php图像生成器URL下载图像,例如http://www.example.net/getlampimage.php?id=151
谢谢! :)
答案 0 :(得分:0)
您需要使用图像MIME类型输出内容,然后使用GD实际构建图像。
本手册页有一些如何输出图像的示例: http://php.net/manual/en/function.imagejpeg.php
以下是如何从文件创建PHP图像资源: http://www.php.net/manual/en/function.imagecreatefromjpeg.php