我正在使用画布并使用以下脚本
创建图像function getImage() {
var canvas1 = document.getElementById("images");
if (canvas1.getContext) {
var ctx = canvas1.getContext("2d");
var myImage = canvas1.toDataURL("image/jpg");
}
$('<form action="download.php" method="POST">' +
'<input type="hidden" name="aid" value="' + myImage + '">' +
'</form>').submit();
}
在我的Download.php文件中,
<?php $img = $_POST['aid'];
echo "<img src=".$img.">";
?>
正确显示图像。但我想给jpg格式或pdf格式的下载按钮。
我怎么用?
我使用了 base64_decode(); 方法。但我无法解决。
帮助我......
答案 0 :(得分:7)
谢谢大家。但我得到了答案,
file_put_contents();
但事情,我不知道如何使用。最后我从这个Answer获得了它。
答案是,
$data = 'data:image/png;base64,AAAFBfj42Pj4';
list($type, $data) = explode(';', $data);
list(, $data) = explode(',', $data);
$data = base64_decode($data);
file_put_contents('/tmp/image.png', $data);
但我仍然在等待带有image / pdf格式选项的下载按钮。
答案 1 :(得分:2)
PHP回显图片,带链接
<?php
$img = $_POST['aid'];
echo "<a href='download_image.php'><img src=".$img."></a>";
?>
<?php
$img = "myimage.jpg";
// fix for IE catching or PHP bug issue
header("Pragma: public");
header("Expires: 0"); // set expiration time
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
// browser must download file from server instead of cache
// force download dialog
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
// use the Content-Disposition header to supply a recommended filename and
// force the browser to display the save dialog.
header("Content-Disposition: attachment; filename=".basename($img).";");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($img));
readfile("$img");
exit();
?>