Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用reportlab 生成包含两页或多页的PDF?我一直无法在文档中找到任何内容。
canvas.showPage()
将强制打开一个新页面(即使它听起来像是在显示一个页面,)
(假设您正在使用画布)
如果您使用的是 flowables,我认为有一个 PageBreak flowable
我认为你可以只保留.append()东西,一旦它对于单个页面来说太大,它会自动打破页面,或者你可以通过执行以下操作强制分页:
.append()
.append(PageBreak())