我正在尝试开发一种机制,通过强制通过 php 下载画布作为图像下载。以下代码适用于 chrome 桌面,但不适用于 Android 2.3 股票浏览器。
HTML 和 JavaScript:
<script> function downloadImage()
{
document.getElementById('action').value = 'downloadfile';
document.getElementById('source').value = document.getElementById('finalimage').src;
document.getElementById('user').value = userId;
document.getElementById('imageForm').submit();
}
</script>
<html>
<form id="imageForm" action="" method="post" enctype="application/x-www-form-urlencoded">
<input type="hidden" name="source" id="source" value=""/>
<input type="hidden" name="action" id="action" value="savefile"/>
<input type="hidden" name="user" id="user" value=""/>
</form>
</html>
PHP代码:
<?php
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"colouringbook-page.jpg\"");
header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
header("Pragma: no-cache");
header("Content-transfer-encoding: binary");
$source = $_REQUEST['source'];
$source = base64_decode(substr($source, strpos($source, ",")+1));
header("Content-Length: " . strlen($source));
print $source;
exit;
?>
我遇到的问题首先是“下载失败”。然后,当我设法成功下载时,图像已损坏。
[更新]
我只是通过输出到浏览器然后尝试从那里保存图像来进行测试。我正在显示图像,但在保存图像时,文件命名方案是 *.html
看起来它可能是一个 android 股票浏览器错误。我能够将图像保存到服务器,但仍然无法从那里输出缓冲区来下载图像。我必须输出一个常规的 html 标签,然后在 android 上执行“另存为”来下载图像。