WMDE
/
eva
forked from tohe/eva
7
1
Fork 0
eva/austritt/pdf_test.py

7 lines
151 B
Python

from reportlab.pdfgen import canvas
def hello(c):
c.drawString(100,100,"Hello World")
c = canvas.Canvas("hello.pdf")
hello(c)
c.showPage()
c.save()