4

我正在尝试使用节点的 pdfkit 制作 PDF,但我遇到了一些与文本宽度相关的问题。

我想要的结果是这样的。

Overall comments:              This is the comment 
                               that will display here bla bla
                               extra text here 

但是我现在的代码得到的是这个

Overall comments:              This is the comment
that will display here blab bla extra text here

要编写这段文字,我使用以下代码:

doc.font('Courier-Bold').text(padRight('Overall Comments:',28),{continued: true});
doc.font('Courier').text(audit.comment,{width: 100,align: 'justify'});

其中 audit.comment 是右侧的文本,padRight 返回固定大小为 28 的字符串,并在右侧添加空格。

似乎它忽略了宽度选项,或者我不知道如何使用它。

4

0 回答 0