ฉันต้องการบันทึกภาพจาก URL ของ PHP ไปยังพีซีของฉัน สมมติว่าฉันมีหน้าhttp://example.com/image.php
หนึ่งถือรูปภาพ "ดอกไม้" หนึ่งอันไม่มีอะไรอื่นอีกแล้ว ฉันจะบันทึกรูปภาพนี้จาก URL ด้วยชื่อใหม่ (ใช้ PHP) ได้อย่างไร
ฉันต้องการบันทึกภาพจาก URL ของ PHP ไปยังพีซีของฉัน สมมติว่าฉันมีหน้า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);
$_GET
ตัวแปรที่มี URL http://example.com/fetch-image.php?url=http://blabla.com/flower.jpg
ของรูปภาพ ในกรณีของตัวอย่างนี้คุณก็สามารถโทร$_GET['url']
ในสคริปต์ PHP $ch = curl_init($_GET['url']);
ของคุณเช่นดังนั้น:
copy('http://example.com/image.php', 'local/folder/flower.jpg');
allow_url_fopen
)
$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กับ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');
}
ดู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)
$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);
สร้างโฟลเดอร์ชื่ออิมเมจที่อยู่ในพา ธ ที่คุณวางแผนที่จะวางสคริปต์ php ที่คุณกำลังจะสร้าง ตรวจสอบให้แน่ใจว่ามีสิทธิ์ในการเขียนสำหรับทุกคนมิฉะนั้นสคริปต์จะไม่ทำงาน (จะไม่สามารถอัปโหลดไฟล์ไปยังไดเรกทอรี)
$data = file_get_contents('http://example.com/image.php');
$img = imagecreatefromstring($data);
imagepng($img, 'test.png');
ติดตั้ง wkhtmltoimage บนเซิร์ฟเวอร์ของคุณจากนั้นใช้แพ็คเกจแพ็คเกจของฉัน packagist.org/packages/tohidhabiby/htmltoimage เพื่อสร้างภาพจาก url ของเป้าหมายของคุณ
file_put_contents
เป็นต้น