Skip to content

Instantly share code, notes, and snippets.

@gileno
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gileno/f89e30feb66ccfd7bb50 to your computer and use it in GitHub Desktop.
Save gileno/f89e30feb66ccfd7bb50 to your computer and use it in GitHub Desktop.
Exemplo Reportlab Canvas
from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
c = canvas.Canvas("hello.pdf")
c.setFont("Helvetica", 40)
c.drawString(3*inch, 3*inch, "Hello World")
c.showPage()
c.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment