willsonlincake 发表于 2022-4-7 18:40:18

Reportlab生成PDF

from reportlab.pdfgen import canvas
c = canvas.Canvas("hello.pdf")
c.drawString(100,750,"Welcome to Reportlab!")
c.save()
页: [1]
查看完整版本: Reportlab生成PDF