gpt4 book ai didi

fpdf - FPDF相邻打印MultiCell()

转载 作者:行者123 更新时间:2023-12-03 13:42:23 26 4
gpt4 key购买 nike

我已经四处搜寻,发现这个问题非常普遍,但似乎找不到正确和直接的答案。我正在使用FPDF,并且我想使用MultiCell()生成表,因为我需要它的换行属性。尝试使用Cell(),但无法读取换行符。

$col1="PILOT REMARKS\n\n";
$pdf->MultiCell(189, 10, $col1, 1, 1);
$col2="Pilot's Name and Signature\n".$name;
$pdf->MultiCell(63, 10, $col2, 1);
$pdf->Ln(0);
$col3="Date Prepared\n".$date;
$pdf->MultiCell(63, 10, $col3, 1);

但是我无法正确生成它,因为MultiCell()会堆叠结果。如何以最简单的方式使MultiCell()彼此相邻打印?

找到了这个 similar question,但是没有提供明确的答案。任何帮助将不胜感激。提前致谢。

最佳答案

尝试存储X和Y坐标,然后在写

$x = $pdf->GetX();
$y = $pdf->GetY();

$col1="PILOT REMARKS\n\n";
$pdf->MultiCell(189, 10, $col1, 1, 1);

$pdf->SetXY($x + 189, $y);

$col2="Pilot's Name and Signature\n".$name;
$pdf->MultiCell(63, 10, $col2, 1);
$pdf->Ln(0);
$col3="Date Prepared\n".$date;
$pdf->MultiCell(63, 10, $col3, 1);
后再见面

关于fpdf - FPDF相邻打印MultiCell(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13559330/

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