Answers for "python pdf fpdf example"

0

python pdf fpdf example

from fpdf import FPDF

pdf = FPDF()
pdf.add_page()
pdf.set_xy(0, 0)
pdf.set_font('arial', 'B', 13.0)
pdf.cell(ln=0, h=5.0, align='L', w=0, txt="Hello", border=0)
pdf.output('test.pdf', 'F')
Posted by: Guest on April-19-2022

Code answers related to "python pdf fpdf example"

Python Answers by Framework

Browse Popular Code Answers by Language