我想从浏览器的新窗口下载图像。手段当我点击图像时,它应该出现在新窗口中,并且有按钮可以下载它。
直到现在我能够单击下载而不是在新窗口中打开意味着当我点击图像时,弹出的浏览器会生成打开或保存图像。但我想首先在新窗口中打开图像下载按钮到下载。
这是我正在使用的代码。
<?php
if(isset($_GET['file'])){
//Please give the Path like this
$file = $_GET['file'];
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
}
?>