web-dev-qa-db-ja.com

から画像を保存中 PHP URL

PHP URLから自分のPCに画像を保存する必要があります。単一の "花"の画像を保持するページhttp://example.com/image.phpがあるとしましょう。この画像をURLから新しい名前で(PHPを使用して)保存するにはどうすればよいですか。

372
riad

allow_url_fopentrueに設定されている場合:

$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);
668
vartec
copy('http://example.com/image.php', 'local/folder/flower.jpg');
233
Halil Özgür
$content = file_get_contents('http://example.com/image.php');
file_put_contents('/my/folder/flower.jpg', $content);
60
soulmerge

この例では、リモート画像を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');
26
Sam152

Vartecの答え with 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);
22
stoefln

私は他のソリューションをうまく動かすことができませんでしたが、私は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');
}
8
Andrew
$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);
3
karl

file()を参照してください。 PHP手動

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

作成しようとしているphpスクリプトを配置する予定のパスにあるimagesという名前のフォルダを作成します。すべての人に書き込み権限があるか、スクリプトが機能しないことを確認してください(ファイルをディレクトリにアップロードできません)。

1
Ibrahim

サーバーにwkhtmltoimageをインストールしてから、私のパッケージpackagist.org/packages/tohidhabiby/htmltoimageを使用して、ターゲットのURLから画像を生成します。

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