pdfjs到img / canvas,仅适用于FireFox

时间:2015-10-06 12:59:19

标签: jquery image pdf html5-canvas pdfjs

我使用pdf.js库从客户端的PDF页面制作图像/画布。但它只适用于FireFox而不适用于Chrome或IE10 +。我环顾四周,但无法找到一个好的答案或解决方案。

我读到IE或Chrome上的pdf.js需要一个网络服务器但是当我在JSFiddle上尝试代码时它仍然无效。

以下是一个示例:https://jsfiddle.net/aqxwsfjo/2/

var url = 'https://raw.githubusercontent.com/mozilla/pdf.js/master/examples/helloworld/helloworld.pdf';

PDFJS.disableWorker = true;

PDFJS.getDocument(url).then(function getPdfHelloWorld(pdf) {

    pdf.getPage(1).then(function getPageHelloWorld(page) {
        var scale = 1.5;
        var viewport = page.getViewport(scale);


        var canvas = document.getElementById('the-canvas');
        var context = canvas.getContext('2d');
        canvas.height = viewport.height;
        canvas.width = viewport.width;

        page.render({canvasContext: context, viewport: viewport})


    });

});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://raw.githubusercontent.com/mozilla/pdf.js/master/web/compatibility.js"></script>
<script src="https://raw.githubusercontent.com/mozilla/pdf.js/gh-pages/build/pdf.js"></script>


<canvas id="the-canvas" style="border:1px solid black"></canvas>

1 个答案:

答案 0 :(得分:0)

因为看起来GitHub在使用X-Content-Type-Options: nosniff返回原始文件时添加了标题Content-Type: text/plain。请参阅相关问题:Link and execute external JavaScript file hosted on GitHub

如相关问题中所述,解决方案是将https://raw.githubusercontent.com替换为https://rawgit.com/,并返回具有正确内容类型的文件。

这里更新了小提琴:https://jsfiddle.net/aqxwsfjo/4/