PHP URLから自分のPCに画像を保存する必要があります。単一の "花"の画像を保持するページhttp://example.com/image.php
があるとしましょう。この画像をURLから新しい名前で(PHPを使用して)保存するにはどうすればよいですか。
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);
copy('http://example.com/image.php', 'local/folder/flower.jpg');
$content = file_get_contents('http://example.com/image.php');
file_put_contents('/my/folder/flower.jpg', $content);
この例では、リモート画像を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');
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);
私は他のソリューションをうまく動かすことができませんでしたが、私は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');
}
$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);
$url = 'http://mixednews.ru/wp-content/uploads/2011/10/0ed9320413f3ba172471860e77b15587.jpg';
$img = 'miki.png';
$file = file($url);
$result = file_put_contents($img, $file)
作成しようとしているphpスクリプトを配置する予定のパスにあるimagesという名前のフォルダを作成します。すべての人に書き込み権限があるか、スクリプトが機能しないことを確認してください(ファイルをディレクトリにアップロードできません)。
サーバーにwkhtmltoimageをインストールしてから、私のパッケージpackagist.org/packages/tohidhabiby/htmltoimageを使用して、ターゲットのURLから画像を生成します。
$data = file_get_contents('http://example.com/image.php');
$img = imagecreatefromstring($data);
imagepng($img, 'test.png');