如何使用 Report Lab 在 python 中的 canvas 上绘制 Table

How to draw a Table on a canvas in python using Report Lab

我有一个 table,我想在 python 的 canvas 上显示,我已经在 canvas 中显示了文本,我是 return 将缓冲区 return 另一个函数中的新 FileResponse。 我的代码:

     def Report(dict):
          from reportlab.lib.utils import ImageReader
          buffer = io.BytesIO()
          p = canvas.Canvas(buffer)
          textobject = p.beginText()
          textobject.setTextOrigin(200, 680)
          textobject.textLine('Title')
          p.drawText(textobject)
          logo = ImageReader('static/img/logo.png')
          p.drawImage(logo, 100, 700,width = 400,height=100,mask = None)
          data = [['00', '01', '02', '03', '04'],
        ['10', '11', '12', '13', '14'],
        ['20', '21', '22', '23', '24'],
        ['30', '31', '32', '33', '34']]
          f = Table(data)
          f.setStyle(TableStyle([('BACKGROUND', (1, 1), (-2, -2), 
          colors.green),
                       ('TEXTCOLOR', (0, 0), (1, -1), colors.red)]))

          p.showPage()
          p.save()

          buffer.seek(0)
          return buffer

Table继承了Flowable,其中有一个方法叫做drawOn.

width = 400
height = 100
x = 100
y = 800
f = Table(data)
f.wrapOn(p, width, height)
f.drawOn(p, x, y)

希望对您有所帮助。