当我执行
.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。还有另一个模块可以解析简单的 HTML。它可能会满足您的需求。