WMDE
/
eva
forked from tohe/eva
7
1
Fork 0

Test to simply generate a PDF

This commit is contained in:
Marike Voßbeck 2026-03-04 12:47:41 +01:00
parent 425f0afd63
commit fbee1cff1f
1 changed files with 7 additions and 0 deletions

7
austritt/pdf_test.py Normal file
View File

@ -0,0 +1,7 @@
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()