(pdflib) 带有动态页码的目录
我在 php5 下使用 pdflib 7,正在绘制一份统计报告,其中包含多个页面的多个子主题。
现在,我想在第一页上包含一个目录,其中列出了每个子主题及其实际页码。不用说,我在绘制目录时并不知道这些页码。
在绘制文档的其余部分并创建知道子主题的实际页码的目录后,有没有办法“跳”回第一页?
tia 寻求任何提示或想法
K
I'm on pdflib 7 under php5 and I'm drawing a statistical report with several sub topics over several pages.
Now, I want to include a table of contents on the first page where every sub topic is listed with it's actual page number. Needles to say that I don't know those page numbers at the time I draw the table of contents.
Is there a way to 'jump' back to the first page after drawing the rest of the document and creating the TOC knowing the actual page numbers for the sub topics?
tia for any hints or ideas
K
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 suspend_page() 和resume_page()。您可以查看 PDFlib Cookbook:
http://www.pdflib.com/pdflib-cookbook /分页/
use suspend_page() and resume_page(). You might check out the PDFlib Cookbook:
http://www.pdflib.com/pdflib-cookbook/pagination/