当前位置:  开发笔记 > 编程语言 > 正文

从PHP URL保存图像

如何解决《从PHPURL保存图像》经验,为你挑选了6个好方法。

我需要将图像从PHP URL保存到我的PC.假设我有一个页面,http://example.com/image.php拿着一个"花"图像,没有别的.如何使用新名称(使用PHP)从URL保存此图像?



1> vartec..:

如果您已allow_url_fopen设置为true:

$url = 'http://example.com/image.php';
$img = '/my/folder/flower.gif';
file_put_contents($img, file_get_contents($url));

否则使用cURL:

$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);


你怎么知道,新形象"来了"?
@vartec:因为它吸了一支烟,脸上露出灿烂的笑容:)
+1是我见过的唯一答案,包括二进制标志的"b".
我认为riad意味着使用包含图像URL的`$ _GET`变量`http://example.com/fetch-image.php?url = http:// blabla.com/flower.jpg`.在这个例子中,您可以在PHP脚本中调用`$ _GET ['url']`,如下所示:`$ ch = curl_init($ _ GET ['url']);`.

2> Halil Özgür..:
copy('http://example.com/image.php', 'local/folder/flower.jpg');


请忽略我的评论,此功能与透明度完美配合.我把我的标题硬编码为image/jpeg.
非常优雅(需要`allow_url_fopen`).
@Monnster,不,它不适用于普通的文件系统.
如果目标文件夹不存在,它会自动创建吗?

3> soulmerge..:
$content = file_get_contents('http://example.com/image.php');
file_put_contents('/my/folder/flower.jpg', $content);


一点旧线程...但不要忘记保存到的目录的文件权限.只是浪费了十分钟忘记了显而易见的事.

4> Sam152..:

在这里,示例将远程图像保存到image.jpg.

function save_image($inPath,$outPath)
{ //Download images from remote server
    $in=    fopen($inPath, "rb");
    $out=   fopen($outPath, "wb");
    while ($chunk = fread($in,8192))
    {
        fwrite($out, $chunk, 8192);
    }
    fclose($in);
    fclose($out);
}

save_image('http://www.someimagesite.com/img.jpg','image.jpg');


如何生成图像或文件扩展名与问题相关?

5> stoefln..:

Vartec的回答与卷曲并没有为我工作.由于我的具体问题,它确实略有改善.

例如,

当服务器上有重定向时(例如当您尝试保存Facebook个人资料图像时),您将需要以下选项集:

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

完整的解决方案变为:

$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);



6> Andrew..:

我无法使任何其他解决方案起作用,但我能够使用wget:

$tempDir = '/download/file/here';
$finalDir = '/keep/file/here';
$imageUrl = 'http://www.example.com/image.jpg';

exec("cd $tempDir && wget --quiet $imageUrl");

if (!file_exists("$tempDir/image.jpg")) {
    throw new Exception('Failed while trying to download image');
}

if (rename("$tempDir/image.jpg", "$finalDir/new-image-name.jpg") === false) {
    throw new Exception('Failed while trying to move image file from temp dir to final dir');
}

推荐阅读
黄晓敏3023
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有