4

我正在使用画布并使用以下脚本创建图像,

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(); 方法。但我无法解决。

帮我...

4

2 回答 2

11

谢谢大家。但我得到了答案,

file_put_contents();

但是事情,我不知道如何使用。最后我从这个答案中得到了它。

答案是,

$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);

但我仍在等待带有图像/pdf 格式选项的下载按钮。

于 2013-08-14T12:20:57.933 回答
3

试试这个:

带有链接的 PHP 回显图像

<?php

$img = $_POST['aid'];
echo "<a href='download_image.php'><img src=".$img."></a>";

?>

下载图片.php

<?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();

?>
于 2013-08-14T12:06:37.577 回答