在fpdf中为变量加下划线时无法正确包装文本

时间:2017-12-10 04:21:19

标签: php html fpdf

我无法让我的网页排成一行。我遵循了一些关于使用xy值来放置我的单词的其他想法,但是第三个多单元被推到了页面的中间而没有回到左边距。我不知道每次变长多长,所以我不能设置它。

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

$pdf->MultiCell(0,7,'I, ');
$pdf->SetFont('Arial','U',14);
$pdf->SetXY($x+4,$y);
$i = strlen($Sellers);

$pdf->MultiCell(0,7,$Sellers);
$pdf->SetFont('Arial','',14);
$pdf->SetXY($x+$i,$y);

$pdf->MultiCell(0,7,', the undersigned sellers of said property do hereby authorize Person to conduct business on behalf of sell: ');

任何想法。我需要它基本上说我,强调卖家名字,授权等等等等等等。

谢谢

0 个答案:

没有答案