我尝试创建一个具有多个页面的PDF,并且需要提前计算每个单独元素(MultiCell)的高度来准备分页符.根据文档,有几个功能,像GetCharWidth / GetStringWidth支持我自己做,但除了潜在的性能损失,我可能不会这样做了.建议以更优雅的方式实现我的目标?
参考:TCPDF
我GOT它:D !!!!!
原文链接:https://www.f2er.com/php/131054.html创建另一个pdf2对象
// pdf2 set x margin to pdf1's xmargin,but y margin to zero // to make sure that pdf2 has identical settings,you can clone the object (after initializing the main pdf object) $pdf2 = clone $pdf; pdf2->addpage pdf2->writeCell $height = pdf2->getY() pdf2->deletePage(pdf2->getPage()) pdf1->checkPageBreak($height); pdf1->writeCell()
W00tness:D