diff --git a/austritt/pdf_test.py b/austritt/pdf_test.py new file mode 100644 index 0000000..213ad1f --- /dev/null +++ b/austritt/pdf_test.py @@ -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() \ No newline at end of file