我正在使用画布并使用以下脚本创建图像,
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(); 方法。但我无法解决。
帮我...