how to add margin-bottom and top at multiple pages pdf .
although i am using the latest version of jspdf which uses .html function
JavaScript
x
16
16
1
let doc = new jsPDF('p', 'pt', 'a4');
2
let myImage = '../../../assets/logo.png';
3
var margins = {
4
top: 40,
5
bottom: 60,
6
left: 40,
7
width: 522
8
};
9
10
doc.html(document.getElementById('htmlData'), {
11
callback: function (pdf) {
12
13
pdf.output('dataurlnewwindow');
14
},
15
});
16
thank you for help
Advertisement
Answer
I think you forgot to add the margins variable into the .html()
I added it as an array below.
JavaScript
1
12
12
1
let doc = new jsPDF('p', 'pt', 'a4');
2
let myImage = '../../../assets/logo.png';
3
4
doc.html(document.getElementById('htmlData'), {
5
// Adjust your margins here (left, top, right ,bottom)
6
margin: [40, 60, 40, 60],
7
callback: function (pdf) {
8
9
pdf.output('dataurlnewwindow');
10
},
11
});
12