Reportlab pdf布局指南

时间:2014-10-14 02:53:57

标签: python reportlab

我想创建一个用于打印抽认卡的pdf,例如:

  • 第1页 - 标题 - 大型文本水平居中,徽标略低于水平居中。
  • 第2页 - 卡片1的正面,图像水平居中,垂直居中,图像下方的小文字(如标题)。
  • 第3页 - 卡片1的背面,在页面上水平和垂直居中的大文字
  • 第4页(与第2页内容不同)
  • 第5页(与第3页内容不同)
  • 等等到卡的末尾。
  • 我可能还会在每张卡上打印静态页脚内容

我已经想出了如何嵌入字体,创建自定义页面大小以及其他一些内容,但我对段落,框架,表格,样式等感到不知所措。

接触此布局的pythonic方法是什么?或者什么是有效的结构?

编辑: 正如GDDC评论的那样,这个问题过于宽泛 - 这正是我的问题 - 作为报道的初学者,我对接近看似简单布局的方法感到不知所措。有人可以使用PLATYPUS建议一个好的结构吗?表?段落?框架? ???

感谢。

1 个答案:

答案 0 :(得分:1)

这是我的解决方案的概要,代码在底部:

第1页 - 标题 - 大文本水平居中,徽标略低于水平居中:(注意:在代码中位置颠倒 - 徽标是第一位。)

  • 案文段落。
  • 徽标的图像对象。
  • 将两个项目都插入到包含两行一列的表格对象中。
  • 将表格绘制到第1页
  • 使用showPage()移至第2页

第2页 - 卡1前面,图像水平居中,垂直居中,图像下方有小文字(如标题)。

  • 使用适当的内容与第1页相同。

第3页 - 卡片1的背面,在页面上水平和垂直居中的大文字

  • 案文段落
  • 将段落插入表格中,包含1行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/