如何划分大文本内容在tcpdf php中显示在多个页面?

时间:2017-12-30 11:52:33

标签: php tcpdf

我有大量文字内容作为产品说明,而一页不能包含它。 如何将此描述划分为根据其长度动态拟合多个页面?
在tcpdf类中是否有内置方法来执行此方法? 这是我的代码:

$tab_top = 88 + $height_incoterms;

$pdf->SetFont('','', $default_font_size - 1);
$pdf->writeHTMLCell(190, 3, $this->posxdesc-1, $tab_top, $notetoshow, 1, 1);

$nexY = $pdf->GetY();
$height_note=$nexY-$tab_top;

$pdf->SetDrawColor(192,192,192);
$pdf->Rect($this->marge_gauche, $tab_top, $this->page_largeur-$this->marge_gauche-$this->marge_droite, $height_note);

$tab_height = $tab_height - $height_note;

$tab_top = $nexY+20; //tab for the next item

1 个答案:

答案 0 :(得分:0)

您必须将文本拆分为maxlength大小的块,并在新行上显示每个块。