html2pdf页码编号
我有这样的代码:
$html2pdf = new HTML2PDF('P','A4','en');
$html2pdf->WriteHTML($html);
$html2pdf->Output();
如何在文档底部添加页码?
I have code like this:
$html2pdf = new HTML2PDF('P','A4','en');
$html2pdf->WriteHTML($html);
$html2pdf->Output();
How add page number at the bottom of the document?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我仍在寻找它......我刚刚找到了解决方案:
在您的模板中,插入如下代码:
此处完整示例:http://wiki.spipu .net/doku.php?id=html2pdf:en:v4:书签
i'm still looking for it ... and i have just found the solution :
in your template, insert a code like :
complete sample here : http://wiki.spipu.net/doku.php?id=html2pdf:en:v4:bookmark
我尝试了以下代码。
现在,在页脚的每一页中,我都以以下方式获取页码:
第 1/3 页
第2/3页
第 3/3 页
但我没有任何自定义格式。如果有人知道请告诉。
我已点击链接: http://wiki.spipu.net /doku.php?id=html2pdf%3aen%3av4%3apage
I tried the following code.
Now in each page in footer I am getting PAGE NUMBER IN THE FOLLOWING MANNER
Page 1/3
Page 2/3
Page 3/3
But i have not got any custom format. If any body know please tell.
I have followed the link : http://wiki.spipu.net/doku.php?id=html2pdf%3aen%3av4%3apage
页面上的实例您希望在页面上显示哪种类型的选项。
不同的选项是:(页码、日期、时间、表格),以“;”分隔
您还必须指定页眉和页脚的大小。
Instance on de page which type of option do you want on the page.
Diferents options are : (page, date, heure, form), separated by “;”
Also you have to indicate the size of the header and the footer.
看看 http://www.tufat.com/docs/html2ps/calling.html 并查看
footerhtml
参数。另请参阅http://www.tufat.com/docs/html2ps/directives.html 您可以使用的指令。
希望这能为您指明正确的方向。
Have a look at http://www.tufat.com/docs/html2ps/calling.html and look at the
footerhtml
parameter.Also see http://www.tufat.com/docs/html2ps/directives.html for directives you can use.
Hope this points you in the right direction.