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

7 lines
151 B
Python
Raw Normal View History

2026-03-04 11:47:41 +00:00
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()