我想创建一个用于打印抽认卡的pdf,例如:
我已经想出了如何嵌入字体,创建自定义页面大小以及其他一些内容,但我对段落,框架,表格,样式等感到不知所措。
接触此布局的pythonic方法是什么?或者什么是有效的结构?
编辑: 正如GDDC评论的那样,这个问题过于宽泛 - 这正是我的问题 - 作为报道的初学者,我对接近看似简单布局的方法感到不知所措。有人可以使用PLATYPUS建议一个好的结构吗?表?段落?框架? ???
感谢。
答案 0 :(得分:1)
这是我的解决方案的概要,代码在底部:
第1页 - 标题 - 大文本水平居中,徽标略低于水平居中:(注意:在代码中位置颠倒 - 徽标是第一位。)
第2页 - 卡1前面,图像水平居中,垂直居中,图像下方有小文字(如标题)。
第3页 - 卡片1的背面,在页面上水平和垂直居中的大文字
第4页(与第2页的内容不同)
第5页(与第3页相同,内容不同) - 根据需要重复。
以下用于Django项目 - 视图位于底部。
class fcMaker(object):
""""""
def __init__(self, response):
self.PAGE_SIZE = (2.75*inch, 3.75*inch)
self.c = canvas.Canvas(response, pagesize=self.PAGE_SIZE)
self.styles = style
self.width, self.height = self.PAGE_SIZE
def createDocument(self):
""""""
# Title Page
title = """Title goes here"""
p = Paragraph(title, styleH)
logo = Image("my_cool_logo.jpg")
logo.drawHeight = 99
logo.drawWidth = 99
data = [[logo], [p]]
table = Table(data, colWidths=2.25*inch)
table.setStyle([("VALIGN", (0, 0), (-1, -1), "MIDDLE"),
("ALIGN", (0, 0), (-1, -1), "CENTER"),
("TOPPADDING", (0, 0), (-1, -1), 20)])
table.wrapOn(self.c, self.width, self.height)
table.drawOn(self.c, *self.coord(.25, 2.75, inch))
self.c.showPage()
#Page Two
side1_text = """Text goes here"""
p = Paragraph(side1_text, styleF)
side1_image = Image("first_image.jpg")
side1_image.drawHeight = 99
side1_image.drawWidth = 99
data = [[side1_image], [p]]
table = Table(data, colWidths=2.25*inch)
table.setStyle([("VALIGN", (0, 0), (-1, -1), "MIDDLE"),
("ALIGN", (0, 0), (-1, -1), "CENTER"),
("TOPPADDING", (0, 0), (-1, -1), 3)])
table.wrapOn(self.c, self.width, self.height)
table.drawOn(self.c, *self.coord(.25, 2.75, inch))
self.c.showPage()
#Page Three
side2_text = """<font size = '14'>This is where and how the main text will appear on the rear of this card.
</font>"""
p_side2 = Paragraph(side2_text, styleH)
data = [[p_side2]]
table_side2 = Table(data, colWidths=2.25*inch, rowHeights=2.55*inch)
table_side2.setStyle([("VALIGN", (0, 0), (-1, -1), "MIDDLE"),
("ALIGN", (0, 0), (-1, -1), "CENTER"),
("TOPPADDING", (0, 0), (-1, -1), 3),
("BOX", (0, 0), (-1,-1), 0.25, colors.red)])
front_page = []
front_page.append(table_side2)
f = Frame(inch*.25, inch*.5, self.width-.5*inch, self.height-1*inch, showBoundary=1)
f.addFromList(front_page, self.c)
def coord(self, x, y, unit=1):
"""
Helper class to help position flowables in Canvas objects
"""
x, y = x * unit, self.height - y * unit
return x, y
def savePDF(self):
""""""
self.c.save()
def fc_maker_view(request):
response = HttpResponse(content_type='application/pdf')
response['Content-Disposition'] = 'attachment; filename="pdf1.pdf"'
doc = fcMaker(response)
doc.createDocument()
doc.savePDF()
return response
向Mike Driscoll致敬,他的博客帖子让我开始了,还有一些与我分享的提示。 http://www.blog.pythonlibrary.org/2012/06/27/reportlab-mixing-fixed-content-and-flowables/