我有这样的代码:
$html2pdf = new HTML2PDF('P','A4','en');
$html2pdf->WriteHTML($html);
$html2pdf->Output();
如何在文档底部添加页码?
我有这样的代码:
$html2pdf = new HTML2PDF('P','A4','en');
$html2pdf->WriteHTML($html);
$html2pdf->Output();
如何在文档底部添加页码?
我仍在寻找它......我刚刚找到了解决方案:在您的模板中,插入如下代码:
<page>
<page_footer>
[[page_cu]]/[[page_nb]]
</page_footer>
</page>
在此处完成示例:http ://wiki.spipu.net/doku.php?id=html2pdf:en:v4:bookmark
我尝试了以下代码。
<page>
<page_header footer='page'>
<!-- some text-->
</page_header>
<!--
Content
-->
<page_footer>
</page_footer>
</page>
现在在页脚的每一页中,我都以以下方式获得页码
第 1/3 页 第 2/3 页 第 3/3 页
但我没有任何自定义格式。如果有人知道请告诉。
我点击了链接:http ://wiki.spipu.net/doku.php?id=html2pdf%3aen%3av4%3apage
<page backtop="7mm" backbottom="7mm" footer="page">
<page_header>
<!-- some text-->
</page_header>
<!--
Content
-->
<page_footer>
</page_footer>
页面上的实例,您希望在页面上使用哪种类型的选项。不同的选项有:(页面、日期、时间、表格),用“;”分隔</p>
您还必须指出页眉和页脚的大小。
查看http://www.tufat.com/docs/html2ps/calling.html并查看footerhtml
参数。
另请参阅http://www.tufat.com/docs/html2ps/directives.html了解您可以使用的指令。
希望这能为您指明正确的方向。