imagecreatefromstring可以获取url或文件?

时间:2014-06-30 07:33:34

标签: php gd

我有一个带有此src属性的图像http://myhost.lan/images/log/parts/bg/001.png我可以将此url作为字符串传递给imagecreatefromstring函数吗?究竟是什么意思 imagecreatefromstring手册中的imagecreatefromstring — Create a new image from the image stream in the string

2 个答案:

答案 0 :(得分:1)

是的,你可以这样做:

$src = "http://myhost.lan/images/log/parts/bg/001.png";
$image = imagecreatefromstring(file_get_contents($src));

答案 1 :(得分:0)

由于您尝试加载的图片是一种.png图片,因此您可以这样做:

header("Content-Type: image/png");
$im = imagecreatefrompng('http://myhost.lan/images/log/parts/bg/001.png');
imagepng($im);
imagedestroy($im);
exit();

阅读手册: