默认似乎适合窗口宽度并启用滚动,我想将其设置为:适合一整页到窗口。
我在official documentation的任何地方寻找,但我能找到线索。
答案 0 :(得分:1)
var doc = new jsPDF()
doc.text('This is a test', 10, 10)
doc.viewerPreferences({'FitWindow': true}, true)
doc.save("viewerPreferences.pdf")
// Example printing 10 copies, using cropbox, and hiding UI.
doc.viewerPreferences({
'HideWindowUI': true,
'PrintArea': 'CropBox',
'NumCopies': 10
})