我正在使用TCPDF在项目上标记PDF。
我设置了自定义页脚功能。在页脚功能中,第二页有不同的页边距。 我正在用MultiCell方法编写文本。但是在项目图片上,
$ pdf-> MultiCell(0,0,$ txt,1,'L',0,1,'','',true,0,true);
//此代码在扩展页脚方法中。 // $ t2 =是页面的前页还是后页
if ($t2 == 2) { $this->SetMargins(2, 1, 7, true); } else { $this->SetMargins(7, 1, 2, true); }
问题出在哪里?