带有传单地图的Html2Canvas - 不渲染画布

时间:2015-01-16 12:22:49

标签: canvas render leaflet html2canvas taint

首先感谢您的帮助。 我正在使用html2canvas来获取我的应用程序web的图像并在社交网络中共享它。在应用程序中有一个带有画布图层的传单地图,但结果图像不完整。我把选项L_PREFER_CANVAS = true;强制在传单地图中画布。我也使用了传单图像插件,但它只返回基本地图,我也需要传说。

非常感谢。

Result of html2canvas

在js

 html2canvas(document.body, {
      allowTaint : false,
      logging : true,
      taintTest: false,
      useCORS: true,
      onrendered: function(canvas) {
        // canvas is the final rendered <canvas> element
        dataURL = canvas.toDataURL("image/png");  
        console.info(dataURL);          
        window.open(dataURL);
      }
    });   

记录

log html2canvas

0 个答案:

没有答案