将pdf转换为img不起作用(html2canvas)

时间:2015-04-25 01:35:13

标签: javascript html html2canvas

您好我有一个非常好用的插件...但是当我想要转换PDF时,只捕获div而不是内容= /

我正在使用html2canvas(https://github.com/niklasvh/html2canvas),我的代码如下:

                  <div id="divCapture">
                        <object class="form-controlPDF" data="my.pdf" type="application/pdf" height="500px">
                        </object>
                      </div>

<button type="button" class="btn btn-primary" style="width:100%" id="captur" onclick="capture();">Capture</button>                  

function capture() {
        $('#divCapture').html2canvas({
        onrendered: function (canvas) {
            document.body.appendChild(canvas);
        }
        });
    }

0 个答案:

没有答案