gpt4 book ai didi

php - TCPDF 多单元 valign 不工作

转载 作者:行者123 更新时间:2023-12-04 00:09:24 26 4
gpt4 key购买 nike

我尝试使用 TCPDF 5.9.141 生成 PDF,但 valign 似乎不起作用。它在 CakePHP 2.0 函数中,但我认为这并不重要。
根据文档,我的代码中所有内容都有效:

  • Vertical alignment of text (requires $maxh = $h > 0)
  • This feature works only when $ishtml=false
  • and the cell must fit in a single page.

$pdf = new TCPDF('P', 'mm', 'A4', true, 'UTF-8', false);
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);

$pdf->SetFont('helvetica', '', 7);
$pdf->AddPage();
$pdf->MultiCell($w=20, $h=15, $txt='teszt', $border='1', $align='C', $fill=false, $x=1, $y=1, $reseth=true, $strech=0, $ishtml=false, $autopadding=true, $maxh=15, $valign='M', $fitcell=true);
$pdf->Output('cimkelista.pdf', 'I');

有没有人有任何建议?
提前致谢!

最佳答案

您需要将 maxh 参数设置为使其工作的参数,而不是默认值零。使用与单元格高度相同的值似乎效果最好。

关于php - TCPDF 多单元 valign 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8563308/

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