1

通常我使用以下代码从我的 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

谢谢!:)

4

1 回答 1

0

您需要以图像 MIME 类型输出内容,然后使用 GD 实际构建图像。

本手册页有一些如何输出图像的示例:http: //php.net/manual/en/function.imagejpeg.php

以下是如何从文件创建 PHP 图像资源: http ://www.php.net/manual/en/function.imagecreatefromjpeg.php

于 2013-07-09T10:38:18.650 回答