pdfJS在IE浏览器打印后出现空白部分的解决方法

摘要: IE浏览器打印

借鉴:https://segmentfault.com/q/1010000006028126

但是解决方法对我无用,经过对源码的调查,初步按照以下方法处理:

      var PRINT_OUTPUT_SCALE = 1; //change

 

      var canvasWrapper = document.createElement('div');
      
      canvasWrapper.style.width = canvas.style.width + 'pt'; // add
      canvasWrapper.style.height = canvas.style.height + 'pt'; // add
      
      canvasWrapper.appendChild(canvas);
      printContainer.appendChild(canvasWrapper);

 

黄色部分是修改内容,大意是在js创建canvas的时候,该canvas的高和宽与当前看到的一致,而不取实际文档的高和宽。这样打印出来的文档和在线浏览的是一致的。

你可能感兴趣的:(pdfJS在IE浏览器打印后出现空白部分的解决方法)