<?php
function LoadPNG($imgname)
{
/* Attempt to open */
$im = @imagecreatefrompng($imgname);
/* See if it failed */
if(!$im)
{
/* Create a blank image */
$im = imagecreatetruecolor(150, 30);
$bgc = imagecolorallocate($im, 255, 255, 255);
$tc = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 150, 30, $bgc);
/* Output an error message */
imagestring($im, 1, 5, 5, 'Error loading ' . $imgname, $tc);
}
return $im;
}
header('Content-Type: image/png');
$img = LoadPNG('http://www.prideofhome.com/wp-content/uploads/328145505image_11.png');
imagepng($img);
imagedestroy($img);
?>
我收到错误..要解决的问题.is imagecreatefrompng不支持来自远程服务器的文件。
答案 0 :(得分:3)
要使用远程服务器中的文件,请将imagecreatefromstring
与file_get_contents
结合使用:
$im = imagecreatefromstring(file_get_contents($imgname));
请注意,只有在启用了fopen包装后,才能将URL用作file_get_contents
的文件名。
如果这不能解决您的问题,请澄清您的问题。至少给出你收到的错误。 :)
答案 1 :(得分:0)
删除@
会让您看到错误。未设置apppropriate option,或者没有PNG支持构建gd扩展,或者远程文件不存在/无法下载。