Advertisement
gregwa

FCM 159 - test1a.py

Jul 9th, 2020
1,292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import sys
  2. from fpdf import FPDF
  3.  
  4. pdf = FPDF()
  5. pdf.add_page()
  6. pdf.set_font('Arial', 'B', 16)
  7. pdf.cell(0, 10, 'Hello Full Circle Magazine!',1,1,'C',0,"http://fullcirclemagazine.org")
  8. pdf.output('tuto1a.pdf', 'F')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement