ReportLab

From XPUB & Lens-Based wiki
Revision as of 17:32, 13 November 2012 by Michael Murtaugh (talk | contribs) (Created page with " == ReportLab == Following this [http://www.blog.pythonlibrary.org/2010/03/08/a-simple-step-by-step-reportlab-tutorial/ helpful tutorial] <source lang="python"> from reportl...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

ReportLab

Following this helpful tutorial

from reportlab.pdfgen import canvas
 
c = canvas.Canvas("hello.pdf")
c.drawString(100, 100, "Hello WORLD!")
c.save()