Python Reportlab 分页符
Posted
技术标签:
【中文标题】Python Reportlab 分页符【英文标题】:Python Reportlab Page Break 【发布时间】:2014-06-18 19:42:30 【问题描述】:我正在尝试在 python 中使用 reportlab 生成 pdf 报告。
我的目标是让我的 pdf 文件的第一页只有一个简单的标题和一个没有实际内容的表格。实际内容将从第二页开始。
浏览了一些SO帖子后,我发现afterPage()
命令可以用来分页。所以,我想出了这样的东西:
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer,KeepTogether,tables
from reportlab.lib import colors
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.rl_config import defaultPageSize
from reportlab.lib.pagesizes import A4,landscape
from reportlab.lib.units import inch,cm,mm
from reportlab.pdfgen import canvas
PAGE_HEIGHT = defaultPageSize[1]
PAGE_WIDTH = defaultPageSize[0]
styles = getSampleStyleSheet()
style = styles["Normal"]
def myFirstPage(canvas, doc):
canvas.saveState()
canvas.setFont('Times-Bold',15)
canvas.drawCentredString(PAGE_WIDTH/2.0, PAGE_HEIGHT-38, 'Title 1')
canvas.drawCentredString(PAGE_WIDTH/2.0, PAGE_HEIGHT-58, 'Title 2')
NormalStyle = tables.TableStyle([
('BOX',(0,0),(-1,-1),0.45,colors.blue),
('ALIGN',(0,0),(-1,-1),'LEFT'),
('BACKGROUND',(0,0),(-1,-1),colors.lightblue)
])
mytable = tables.Table([('test','test'),('test2','test2'),('test3','test3')],
colWidths = 1* inch,rowHeights= 0.25 *inch,style = NormalStyle)
mytable.wrapOn(canvas,PAGE_WIDTH ,PAGE_HEIGHT)
mytable.drawOn(canvas,(doc.width/2)-20,700)
doc.afterPage()
canvas.restoreState()
def myLaterPages(canvas, doc):
canvas.saveState()
canvas.setFont('Times-Roman', 9)
canvas.restoreState()
doc = SimpleDocTemplate("myreport.pdf",
leftMargin = 0.75*inch,
rightMargin = 0.75*inch,
topMargin = 1*inch,
bottomMargin = 1*inch)
data = "".join(['this is a test' for i in range(200)])
mydata = Paragraph(data,style)
Story = [Spacer(2.5,0.75*inch)]
Story.append(mydata)
doc.build(Story, onFirstPage=myFirstPage, onLaterPages=myLaterPages)
但我所有的标题、表格和内容都绘制在第一页,afterPage()
函数似乎对我的文档内容没有任何实际影响。
如何更改我的代码以使内容(我的代码中的data
)从第二页开始?
【问题讨论】:
【参考方案1】:您可以为此使用PageBreak()
。只需插入 Story.append(PageBreak())
并从
reportlab.platypus
.
【讨论】:
以上是关于Python Reportlab 分页符的主要内容,如果未能解决你的问题,请参考以下文章