html2canvas.js网页截图功能(解决截图不全问题)

今天来了一个新需求,需要在用户查询过后提供结果集截图功能,百度发现html2canvas.js+jquery可以解决网页截图的问题。
话不多说上代码,以下为主要功能方法
html2canvas.html

"http://www.w3.org/1999/xhtml">

<script type="text/javascript"src="jquery-1.7.2.min.js"/>
<script type="text/javascript"src="html2canvas.js"/>
<script type="text/javascript"src="screenshot.js"/>


id="down_load_hidden" target="blank" style="display: none;">

id="down_button" href="javascript:void(0)" onclick="domShot('qqCont')">保存当前页
<div id="qqCont" class="qqCont">
    需要截图的样式
div>

screenshot.js

/**
 * 调用html2canvas框架进行截图下载功能
 * @param domId 容器Id
 * author Levin
 */
function domShot(domId) {
    //0.5.0-beta4方法
    html2canvas(document.querySelector("#" + domId),{
        allowTaint:true,
        height: $("#"+domId).outerHeight() + 20
    }).then(function(canvas) {
        var timestamp = Date.parse(new Date());
        $('#down_button').attr('href', canvas.toDataURL());
        $('#down_button').attr('download', timestamp + '.png');
        var fileObj=document.getElementById("down_load_hidden");
        fileObj.click();
    });
}

由于官网上提供的dom抓取不支持高度,会造成只可以截到浏览器可见的,如果出现滚动条则不回截全
以下是网上一哥们写的如何修改源码可以支持完整截图的代码
源码未修改

return renderDocument(node.ownerDocument, options, node.ownerDocument.defaultView.innerWidth, node.ownerDocument.defaultView.innerHeight, index).then(function(canvas) {
        if (typeof(options.onrendered) === "function") {
            log("options.onrendered is deprecated, html2canvas returns a Promise containing the canvas");
            options.onrendered(canvas);
        }
        return canvas;
});

修改后

//添加自定设置高度宽度
**
    var width = options.width != null ? options.width : node.ownerDocument.defaultView.innerWidth;
    var height = options.height != null ? options.height : node.ownerDocument.defaultView.innerHeight;
    return renderDocument(node.ownerDocument, options, width, height, index).then(function (canvas) {**

        if (typeof(options.onrendered) === "function") {
            log("options.onrendered is deprecated, html2canvas returns a Promise containing the canvas");
            options.onrendered(canvas);
        }
        return canvas;
    });

修改好的源码附于下面链接

http://download.csdn.net/detail/q2365921/9735784

修改源码的原文链接如下

http://www.cnblogs.com/yanweidie/p/5203943.html

你可能感兴趣的:(解决问题,html2canva,截图,截图不全)