TCPDF 段落最后一行的理由问题

TCPDF Justification Issue with Last Line of Paragraph

我正在使用 PHP 库 TCPDF。在使用 MultiCell 方法和调整选项时,我 运行 遇到了一个小问题。该段的最后一行证明了(我想做了它应该做的)但只有几个词在中间留有很大的空间。这些是我正在创建的动态表单,因此需要 MultiCell(而不是文本或写入)。

有谁知道是否有办法防止这种情况发生但仍然能够使用 MultiCell 方法?我在过去使用 writeHTML 时遇到过 运行 奇怪的问题,并希望尽可能避免。

这是生成结果的代码示例:

$text  = 'This is an example paragraph with no other meaning than to show what is currently happening with this justification issue. I really hope there is a way to keep the ';
$text .= 'justification, yet keep the last sentence from doing so and looking silly. Thank you all for your help and time, it is much appreciated.';
$this->_pdf->MultiCell(0, 0, $text, 0, 'J', false, 1);

非常感谢您的宝贵时间。

我认为没有 'setting' 来处理这个问题;但是,如果您只是在字符串的末尾放置一个新行 ("\n"),它就完全符合我的要求。

因此,如果有人遇到类似问题,答案(就我而言)就是简单地添加一个新行。

$text = "...last line of the paragraph.\n";