Introduction
Statistics
Contact
Development
Disclaimer
Help
gopher.rbfh.de home page
# hello.py
from reportlab.pdfgen.canvas import Canvas
c = Canvas('hello.pdf')
c.setFont('Helvetica-Bold', 36)
c.drawString(100, 100, 'Hello World')
c.save()