66

基本上,我正在做标题所述的事情,试图将 div 的内容保存为图像。

我计划为 iPad 制作一个小型在线应用程序。

一个必须的功能是有一个“保存”按钮,可以将整个网页保存为图像,并将该图像保存到 iPad 的相机胶卷。我希望保存 div 的全部内容,而不仅仅是可见区域。

我在网上进行了简短的搜索,但找不到太多关于任何内容的文档。我在 HTML5 Canvas 上发现了很多东西。这是我整理的一些代码:

<script>
function saveimg()
{
    var c = document.getElementById('mycanvas');
    var t = c.getContext('2d');
    window.location.href = image;

    window.open('', document.getElementById('mycanvas').toDataURL());
}
</script>

<div id="mycanvas">
This is just a test<br />
12344<br />
</div>

<button onclick="saveimg()">Save</button>

虽然,我收到了这个错误:

TypeError: c.getContext is not a function

此应用程序将仅使用 HTML、CSS 和 jQuery(或其他 Javascript 库)构建。

4

2 回答 2

34

有几个相同的问题(1 , 2)。一种方法是使用画布。这是一个有效的解决方案在这里,您可以看到一些使用此库的工作示例。

于 2013-09-02T22:20:07.447 回答
1

做这样的事情:

一个<div>ID 为#imageDIV,另一个ID 为 ,#download一个隐藏<div>ID为#previewImage

包含最新版本的 jquery,以及来自jspdf CDN 的 jspdf.debug.js

然后添加这个脚本:

var element = $("#imageDIV"); // global variable
var getCanvas; // global variable
$('document').ready(function(){
  html2canvas(element, {
    onrendered: function (canvas) {
      $("#previewImage").append(canvas);
      getCanvas = canvas;
    }
  });
});
$("#download").on('click', function () {
  var imgageData = getCanvas.toDataURL("image/png");
  // Now browser starts downloading it instead of just showing it
  var newData = imageData.replace(/^data:image\/png/, "data:application/octet-stream");
  $("#download").attr("download", "image.png").attr("href", newData);
});

单击该 div 将保存为 PNG#download

于 2018-06-12T22:34:25.393 回答