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
2 Answers
Reset to default 4The 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++) {
}