使用MultiCell

时间:2017-10-06 07:08:28

标签: php fpdf textwrapping

问题是当我创建一个MultiCell时,最后一个Cell下降并且换行。 一个例子是:

1 | 2 | 3 | 4

1 | 2 | 3wrap |

4 |

这是我的fpdf:

$pdf->Cell(40,5,$data['1'],'LR',0);
$pdf->Cell(25,5,$data['2'],'LR',0);

if($pdf->GetStringWidth($data['3']) > 65){
    $pdf->SetFont('Arial','',7);
    $pdf->MultiCell(65,5,$data['3'],0,'LR',false);
    $pdf->SetFont('Arial','',9);
}else{
    $pdf->Cell(65,5,$data['3'],'LR',0);
}
$pdf->Cell(65,5,$data['4'],'LR',true);

enter image description here

0 个答案:

没有答案