9

我想强制用户下载图像。没有在浏览器中打开。

可以使用 HTML5 这个属性download,但目前只有 Chrome 支持。

我尝试.htaccess了解决方案,但它不起作用。

<Files *.jpg>
   ForceType application/octet-stream
   Header set Content-Disposition attachment
</Files>

如果用户单击链接,我如何强制下载我的所有图像?

<a href="http://blablabla.com/azerty/abc.jpg" target="_blank" />Download</a>
4

2 回答 2

14

有两种方法可以做到这一点 - 一种使用 JS,一种使用 PHP。

这个网站的 JS 中:

<a href="javascript:void(0);"
 onclick="document.execCommand('SaveAs',true,'file.html');"
 >Save this page</a>

在 PHP 中创建一个名为的脚本download.php,类似于以下代码:

<?php
// Force download of image file specified in URL query string and which
// is in the same directory as the download.php script.

if(empty($_GET['img'])) {
   header("HTTP/1.0 404 Not Found");
   return;
}

$basename = basename($_GET['img']);
$filename = __DIR__ . '/' . $basename; // don't accept other directories

$mime = ($mime = getimagesize($filename)) ? $mime['mime'] : $mime;
$size = filesize($filename);
$fp   = fopen($filename, "rb");
if (!($mime && $size && $fp)) {
  // Error.
  return;
}

header("Content-type: " . $mime);
header("Content-Length: " . $size);
// NOTE: Possible header injection via $basename
header("Content-Disposition: attachment; filename=" . $basename);
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
fpassthru($fp);

然后将图像链接设置为指向此文件,如下所示:

<img src="/images/download.php?img=imagename.jpg" alt="test">
于 2012-06-18T20:13:12.653 回答
-2

在你的 .htaccess 中试试这个:

<FilesMatch "\.(?i:jpg|gif|png)$">
  ForceType application/octet-stream
  Header set Content-Disposition attachment
</FilesMatch>
于 2014-11-13T20:03:24.010 回答