最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I fix the "blank page" issue in html2pdf.js? - Stack Overflow

programmeradmin3浏览0评论

I'm trying to convert the HTML document to PDF using html2pdf.js, but as a result I get a pdf with a blank first page and the last page of the document being half cropped. How such issue could be fixed ? Code:

document.querySelector('.save-pdf').addEventListener('click', function () {
   const elementToPrint = document.getElementById('content');

   const opt = {
      margin:       0,
      filename:     'contract.pdf',
      image:        { type: 'png' },
      html2canvas:  { scale: 2 },
      jsPDF:        { unit: 'in', format: 'letter', orientation: 'p' }
   };


   html2pdf(elementToPrint, opt);
});

I'm trying to convert the HTML document to PDF using html2pdf.js, but as a result I get a pdf with a blank first page and the last page of the document being half cropped. How such issue could be fixed ? Code:

document.querySelector('.save-pdf').addEventListener('click', function () {
   const elementToPrint = document.getElementById('content');

   const opt = {
      margin:       0,
      filename:     'contract.pdf',
      image:        { type: 'png' },
      html2canvas:  { scale: 2 },
      jsPDF:        { unit: 'in', format: 'letter', orientation: 'p' }
   };


   html2pdf(elementToPrint, opt);
});
Share Improve this question edited Apr 30, 2020 at 12:40 netrox asked Feb 15, 2020 at 14:37 netroxnetrox 1291 gold badge2 silver badges8 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 4

The problem solved by switching the version of "html2canvas" library from "rc 5" to "alpha 12".

you have not to download html2canvas.js but in file html2pdf.bundle.js and in line: 8762

change nPages to nPages-1

for (var page = 0; page < nPages; page++) {
    // some code ....
}


for (var page = 0; page < nPages-1; page++) {

}

发布评论

评论列表(0)

  1. 暂无评论