我需要在使用jspdf函数下载pdf文件时获取页面边框。
我怎样才能做到这一点。我能够单独为表格设置边框,而无法为页面设置。
var doc = new jsPDF('p', 'pt');
doc.setFontSize(12);
doc.setTextColor(0);
doc.setFontStyle('bold');
doc.text('Col and row span', 40, 50);
var elem = document.getElementById("table1");
var elem1 = document.getElementById("tbl1");
var elem1 = document.getElementById("example");
var res = doc.autoTableHtmlToJson(elem);
var res1 = doc.autoTableHtmlToJson(elem1);
doc.text('Theme "plain"', 40, doc.autoTableEndPosY() + 30);
doc.autoTable(res.columns, res.data, {
startY: 90,
theme: 'grid',
drawHeaderRow: function(cell, data) {
return false;
},
pageBreak: 'avoid',
margin: {
right: 305
}
});
doc.autoTable(res.columns, res.data, {
startY: 90,
pageBreak: 'avoid',
theme: 'grid',
drawHeaderRow: function(cell, data) {
return false;
},
margin: {
left: 305
}
});
doc.autoTable(res1.columns, res1.data, {
startY: doc.autoTableEndPosY() + 30,
});
如何设置此doc的边框?
答案 0 :(得分:4)
如果您按页面边框表示整个页面的边框,请尝试以下操作:
doc.rect(20, 20, doc.internal.pageSize.width - 40, doc.internal.pageSize.height - 40, 'S');