gpt4 book ai didi

node.js - 在 Node js中使用pdfkit指定PDF页面大小

转载 作者:搜寻专家 更新时间:2023-11-01 00:14:22 24 4
gpt4 key购买 nike

我在 pdfkit 手册中读到可以使用 size[width,height] 调整 pdf 页面的大小。但是当我尝试以下代码时它不起作用

var PDFDocument = require('pdfkit');

var doc = new PDFDocument;
doc.size=[50,50];
doc.end()

最佳答案

经过探索我发现下面的代码对我有用,可以创建任何大小的 PDF 文档,宽度、高度和边距作为变量

 var PDFDocument = require('pdfkit');

var fs = require("fs");
var doc=new PDFDocument({
size: [width,height],
margins : { // by default, all are 72
top: 10,
bottom:10,
left: 10,
right: 10
}
})

关于node.js - 在 Node js中使用pdfkit指定PDF页面大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38702471/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com