更改或删除标题和内容TCPDF 中的页脚
tcpdf 中的AddPage()
自动调用页眉和页脚。我如何消除/覆盖这个?
AddPage()
in tcpdf automatically calls Header and Footer. How do I eliminate/override this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
在调用
AddPage()
之前使用SetPrintHeader(false)
和SetPrintFooter(false)
方法。像这样:Use the
SetPrintHeader(false)
andSetPrintFooter(false)
methods before callingAddPage()
. Like this:控制何时显示标头(或标头的位)的一个很好的简单方法是扩展 TCPDF 类并创建您自己的标头函数,如下所示:
当然,您也可以使用它来不返回任何内容,如果您' d 更喜欢没有标题。
A nice easy way to have control over when to show the header - or bits of the header - is by extending the TCPDF class and creating your own header function like so:
Naturally you can use this to return no content as well, if you'd prefer to have no header at all.
这是删除页眉和页脚的另一种方法:
Here is an alternative way you can remove the Header and Footer:
另外,TCPDF 文档中的示例 3 展示了如何使用您自己的内容覆盖页眉和页脚班级。
Also, Example 3 in the TCPDF docs shows how to override the header and footer with your own class.
示例:
- 第一页,无页脚
- 第二页,有页脚,从第 1 页开始
结构:
Example:
- First page, no footer
- Second page, has footer, start with page no 1
Structure:
借助上述功能,您可以更改页眉和页脚。
With the help of above functions you can change header and footer.