如何使用jsPdf设置ViewerPreferences

时间:2017-07-10 16:56:50

标签: jspdf

默认似乎适合窗口宽度并启用滚动,我想将其设置为:适合一整页到窗口。

我在official documentation的任何地方寻找,但我能找到线索。

1 个答案:

答案 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
})

Check Document