如何使用 jspdf 在 .HTML 中设置上下边距
How to set top and bottom margin in .HTML using jspdf
如何在多个页面上添加边距底部和顶部 pdf .
尽管我使用的是最新版本的 jspdf,它使用 .html 函数
let doc = new jsPDF('p', 'pt', 'a4');
let myImage = '../../../assets/logo.png';
var margins = {
top: 40,
bottom: 60,
left: 40,
width: 522
};
doc.html(document.getElementById('htmlData'), {
callback: function (pdf) {
pdf.output('dataurlnewwindow');
},
});
感谢您的帮助
我想你忘了将边距变量添加到 .html()
我在下面将其添加为数组。
let doc = new jsPDF('p', 'pt', 'a4');
let myImage = '../../../assets/logo.png';
doc.html(document.getElementById('htmlData'), {
// Adjust your margins here (left, top, right ,bottom)
margin: [40, 60, 40, 60],
callback: function (pdf) {
pdf.output('dataurlnewwindow');
},
});
如何在多个页面上添加边距底部和顶部 pdf .
尽管我使用的是最新版本的 jspdf,它使用 .html 函数
let doc = new jsPDF('p', 'pt', 'a4');
let myImage = '../../../assets/logo.png';
var margins = {
top: 40,
bottom: 60,
left: 40,
width: 522
};
doc.html(document.getElementById('htmlData'), {
callback: function (pdf) {
pdf.output('dataurlnewwindow');
},
});
感谢您的帮助
我想你忘了将边距变量添加到 .html()
我在下面将其添加为数组。
let doc = new jsPDF('p', 'pt', 'a4');
let myImage = '../../../assets/logo.png';
doc.html(document.getElementById('htmlData'), {
// Adjust your margins here (left, top, right ,bottom)
margin: [40, 60, 40, 60],
callback: function (pdf) {
pdf.output('dataurlnewwindow');
},
});