从PHP URL保存图像

时间:2009-04-07 06:50:46

标签: php image

我需要将图片从PHP URL保存到我的电脑上。 假设我有一个页面http://example.com/image.php,只有一个“花”图像,没有别的。如何使用新名称(使用PHP)从URL保存此图像?

12 个答案:

答案 0 :(得分:673)

如果您将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);

答案 1 :(得分:236)

copy('http://example.com/image.php', 'local/folder/flower.jpg');

答案 2 :(得分:60)

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

答案 3 :(得分:26)

在这里,示例将远程图像保存到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');

答案 4 :(得分:22)

带有Vartec's answer

cURL对我不起作用。由于我的具体问题,它确实略有改善。

<强>如,

当服务器上存在重定向时(例如,当您尝试保存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);

答案 5 :(得分:8)

我无法使任何其他解决方案起作用,但我能够使用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');
}

答案 6 :(得分:3)

$img_file='http://www.somedomain.com/someimage.jpg'

$img_file=file_get_contents($img_file);

$file_loc=$_SERVER['DOCUMENT_ROOT'].'/some_dir/test.jpg';

$file_handler=fopen($file_loc,'w');

if(fwrite($file_handler,$img_file)==false){
    echo 'error';
}

fclose($file_handler);

答案 7 :(得分:3)

请参阅file()PHP Manual

$url    = 'http://mixednews.ru/wp-content/uploads/2011/10/0ed9320413f3ba172471860e77b15587.jpg';
$img    = 'miki.png';
$file   = file($url);
$result = file_put_contents($img, $file)

答案 8 :(得分:1)

创建一个名为images的文件夹,该文件夹位于您计划放置要创建的php脚本的路径中。确保它具有每个人的写权限,否则脚本将无法工作(它将无法将文件上载到目录中)。

答案 9 :(得分:0)

$data = file_get_contents('http://example.com/image.php');
$img = imagecreatefromstring($data);
imagepng($img, 'test.png');

答案 10 :(得分:0)

在服务器上安装wkhtmltoimage,然后使用我的软件包packagist.org/packages/tohidhabiby/htmltoimage从目标网址生成图像。

答案 11 :(得分:0)

这里没有答案提到可以压缩(gzip)URL图像的事实,在这种情况下它们都不起作用。

有两种解决方案可以解决这个问题:

首先是使用cURL方法并设置curl_setopt CURLOPT_ENCODING, ''

// ... image validation ...

// Handle compression & redirection automatically
$ch = curl_init($image_url);
$fp = fopen($dest_path, 'wb');

curl_setopt($ch, CURLOPT_FILE, $fp);
// Exclude header data
curl_setopt($ch, CURLOPT_HEADER, 0);
// Follow redirected location
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
// Auto detect decoding of the response | identity, deflate, & gzip
curl_setopt($ch, CURLOPT_ENCODING, '');

curl_exec($ch);

curl_close($ch);
fclose($fp);

它可以工作,但是从数百种不同图像(png,jpg,ico,gif,svg)的测试中,这不是最可靠的方法。

最有效的方法是检测图像网址是否具有内容编码(例如gzip):

// ... image validation ...

// Fetch all headers from URL
$data = get_headers($image_url, true);

// Check if content encoding is set
$content_encoding = isset($data['Content-Encoding']) ? $data['Content-Encoding'] : null;

// Set gzip decode flag
$gzip_decode = ($content_encoding == 'gzip') ? true : false;

if ($gzip_decode)
{
    // Get contents and use gzdecode to "unzip" data
    file_put_contents($dest_path, gzdecode(file_get_contents($image_url)));
}
else
{
    // Use copy method
    copy($image_url, $dest_path);
}

有关gzdecode see this thread的更多信息。到目前为止,一切正常。如果还有什么可以做得更好的,请在下面的评论中告诉我们。