Python 和 ReportLab:在每个页面的末尾添加一个字符串

发布于 2024-10-17 00:15:36 字数 357 浏览 1 评论 0原文

我正在使用 Reportlab 构建一个 pdf 文档,使用 Paragraph 类:

doc = SimpleDocTemplate(response, leftMargin=lateral_margin, rightMargin=lateral_margin,
    topMargin=top_bottom_margin, bottomMargin=top_bottom_margin)
Document = []
Document.append(Paragraph("bla bla bla bla", my_style))
doc.build(Document)  

现在我想在每个页面的末尾添加一个字符串,我该怎么做?

I'm building a pdf document with reportlab, using the Paragraph class:

doc = SimpleDocTemplate(response, leftMargin=lateral_margin, rightMargin=lateral_margin,
    topMargin=top_bottom_margin, bottomMargin=top_bottom_margin)
Document = []
Document.append(Paragraph("bla bla bla bla", my_style))
doc.build(Document)  

Now I want to add at the end of every page a string, how can I do that??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦忆晨望 2024-10-24 00:15:36

您的 build 调用可以包含 onFirstPageonLaterPages 参数,它们是页面启动时调用的函数。您可以在这些函数中的画布上绘图,以在每个页面上创建固定位置的元素,例如页眉和页脚。

Your build call can include onFirstPage and onLaterPages arguments, which are functions invoked when the page starts. You can draw on the canvas in those functions to create fixed-position elements on each page, like page headers and footers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文