我有一个带有此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
?
答案 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();
阅读手册: