如何在 PDF 文件的标题中分词,同时使用 jsPDF 生成 PDF(即我想将“Hello World”之类的标题分成两行)以及如何在 jsPDF 中设置字体大小。
我已经尝试过pdf.setFontSize(12);
,但它对我不起作用。
任何帮助,将不胜感激。谢谢。
代码:
var pdf = new jsPDF('l', 'pt', 'a3')
, source = $('#TableId')[0]
, specialElementHandlers = {
}
, margins = { top: 20, bottom: 20, left: 30, width: 922 };
pdf.fromHTML(
source // HTML string or DOM elem ref.
, margins.left // x coord
, margins.top // y coord
, {
'width': margins.width // max width of content on PDF
, 'elementHandlers': specialElementHandlers
},
function (dispose) {
pdf.save('Test.pdf');
},
margins
)