我经营一个购物网站,并试图将此远程 gif 图像的副本以 jpg 格式保存到我的服务器。
$i='http://www.medexsupply.com/images/RO1R910C.GIF';
$imagejpg = imagecreatefromgif($i);
它给出了以下错误:
Warning: imagecreatefromgif(): Couldn't resolve host name in /home/xxxxx/public_html/xxxxxxx/file.php on line 46
Warning: imagecreatefromgif(http://www.medexsupply.com/images/RO1R910C.GIF): failed to open stream: operation failed in /home/xxxxx/public_html/xxxxxxx/file.php on line 46
在第 46 行,代码是
$imagejpg = imagecreatefromgif($i);
我有 128MB 内存限制的专用服务器,用于 php 脚本。
allow_url_fopen 已打开。
我可以修改服务器上的任何设置。
我可以复制数千个其他远程图像,但不能复制此图像和其他一些站点的图像。
有人可以帮忙吗。
如果您想了解更多信息,请回复。
谢谢