如何发送 html 代码作为 PDFKIT 节点模块中函数的参数来生成其 pdf?

问题描述 投票:0回答:1

当我执行

.text(<some text material>)
时,PDFKIT 会在 PDF 中显示给定的文本。这是我的代码:

const doc = new PDFDocument();

// pipe the document to a blob
const stream = doc.pipe(blobStream());

// add your content to the document here, as usual
doc.fontSize(25).text(text, 100, 100);

// get a blob when you're done
doc.end();

但是,我想知道可以将 html 代码作为参数并在 pdf 上呈现该 html 代码的函数。或者建议任何其他方法但仅使用 PDFKIT 模块。

pdfkit html-to-pdf node-pdfkit
1个回答
0
投票

pdfkit 本身不解释 HTML。还有另一个模块可以解析简单的 HTML。它可能会满足您的需求。

https://www.npmjs.com/package/@shipper/pdfkit-html-simple

© www.soinside.com 2019 - 2024. All rights reserved.