TCPDF 编辑指定页/每一页的内容(跳转指定页) - NOTEBOOK
TCPDF 编辑指定页/每一页的内容(跳转指定页)
PHP / MySQLPosted on 2024-11-24
摘要 : TCPDF 在生成/编辑 pdf 时,可以重新回到前面的某一页、全部页,再继续编辑内容。
$pdf->getPage($i);
❱ 跳转到指定页码
$pdf->setPage($i );
❱ 遍历每一页并编辑内容
// 获得总页数
$numPages = $pdf->getNumPages();
// 遍历每一页
for($i=1;$i <= $numPages; $i++){
$pdf->setPage($i ); // 跳转到指定页
// do your code here with that page
}