美好的一天!我在使用TCPDF时需要一些帮助,我有这个问题,第一页渲染细节正常但在第二页上,所有细节都堆叠在一个区域,我正在使用MultiCell获取详细信息。
public function PageHeader() {
$this->SetMargins(5, $this->GetY(), -1, true);
$this->SetCellPadding(0);
}
private function _addPage() {
$top_margin = 50;
$this->AddPage();
$this->setCellHeightRatio(1.25);
$this->SetMargins(5, $top_margin, 5, true);
$this->SetTopMargin($top_margin);
}