我想实现一个按钮,用于下载在外部服务器上传的图像。
HTML 5下载属性确实有效,但在FireFox和IE10中,它会在新窗口中打开图像,用户仍然必须使用右键单击将图像保存为。
<a href="https://externalserver/images/image.png" download="edited_image.png">Save</a>
如果图像位于我的服务器中,我可以使用PHP强制下载。
<?php
$file = $_GET['file'];
download_file($file);
function download_file( $fullPath ){
// Must be fresh start
if( headers_sent() )
die('Headers Sent');
// Required for some browsers
if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression', 'Off');
// File Exists?
if( file_exists($fullPath) ){
// Parse Info / Get Extension
$fsize = filesize($fullPath);
$path_parts = pathinfo($fullPath);
$ext = strtolower($path_parts["extension"]);
// Determine Content Type
switch ($ext) {
case "png": $ctype="image/png"; break;
case "jpeg":
case "jpg": $ctype="image/jpg"; break;
default: $ctype="application/force-download";
}
header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false);
header("Content-Type: $ctype");
header("Content-Disposition: attachment; filename=\"".basename($fullPath)."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".$fsize);
ob_clean();
flush();
readfile( $fullPath );
} else
die('File Not Found');
}
?>
HTML
<a href="/php/download.php?file=image01.jpg">Download1</a>
有没有办法避免使用HTML5下载属性在FF和IE的新窗口中打开图像的问题? -Chrome效果很好 - 。
有没有办法用PHP做,但是当图像位于服务器外部时?
以任何方式执行它都会很棒,HTML 5或PHP。谢谢你的帮助。问候。
答案 0 :(得分:1)
将其复制到您的服务器并从那里下载。
file_put_contents($fullpath,
file_get_contents('https://externalserver/images/image.png'));
header("Pragma: public"); // wtf?
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
// omg what have you been reading?
header("Cache-Control: private",false);
// obviously not rfc 2616
header("Content-Type: $ctype");
header("Content-Disposition: attachment; filename=\"".basename($generatedPath)."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".$fsize);
ob_clean();
flush();
readfile( $fullPath );
答案 1 :(得分:0)
对于php部分。如果你有图像的URL,你可以使用很多方法。
一个简单的方法就是简单调用file_get_content来检索变量中的图像二进制数据。
您可以将其保存到磁盘或随意使用它。