10

所以,我有一个文件:

var doc = new PDFDocument;

文档告诉我PDFKit 文档的第一页是自动为您添加的,因此无需手动添加。但是我怎么能把它变成风景呢?

这个

doc.addPage({
    size: 'LEGAL',
    layout: 'landscape'
});

有效,但添加了另一个页面。

4

2 回答 2

22

So it was quite obvious:

var doc = new PDFDocument(
        {
            layout : 'landscape'
        }
    );
于 2014-01-13T12:14:26.347 回答
1

您可以禁用 autoFirstPage

const doc = new PDFDocument({ autoFirstPage: false });
doc.addPage({
    size: 'LEGAL',
    layout: 'landscape'
});

于 2020-09-19T00:34:38.063 回答