Python PDF generator

We will learn how to make a pdf file using python library ReportLab.

Creating PDF file and adding text line image rectangle and watermark by using Python ReportLab

Installing ReportLab

At your command prompt use this command.
pip install reportlab
Create your first pdf file.

Create PDF files with dynamic data taken from SQLite database in Colab.

Understanding Canvas

Layout and margin of pdf page
Canvas is like a blank white paper where the x , y coordinates starts from bottom left.
x coordinate increases towards right and y coordinate increases towards up direction.
The bottomup argument switches the coordinate system from bottom left to to top left of the page.

How to create PDF file

Write string in pdf page Import canvas from reportlab and we are using my_pdf.pdf as our file name. The option buttomup=0 is the default setting and by setting the value to 1 we can start our coordinate system from top left.
Change the value of my_path as per your system ( requirement ) .
from reportlab.pdfgen import canvas
my_path='G:\\My drive\\testing\\pypdf2\\my_pdf.pdf'
c = canvas.Canvas(my_path,bottomup=0)
c.drawString(200,200,"Hello World") # write text in page 
c.showPage() # saves current page
c.save() # stores the file and close  the canvas
Above code will create the my_pdf.pdf file in the path and write the string Hello World at x=200 and y= 200 position.

Font colour and font size

We can manage the font size and font colour. Before using drawString() we can set these values.
c.setFont("Helvetica", 20) # font family and size
#c.setFillColorCMYK(.2,.2,0,.39) # font colour as CMYK
#c.setFillColorRGB(0,0,1) # font colour as RGB
#c.setFillColor('lightgreen')#lawngreen, lightblue,lemonchiffon
c.setFillColor('lightblue') #lavendarblush
c.drawString(200,200,"Hello World") # write text in page 

Font style

There are some default font family supported by ReportLab. We can get a list of supported fonts by using getAvailableFonts() method. Here is a script to display a list of available fonts.
from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
from reportlab.lib.pagesizes import letter
my_path='G:\\My drive\\testing\\pypdf2\\my_pdf.pdf'# file path
c = canvas.Canvas(my_path,pagesize=letter)
c.translate(inch,inch) # starting point of coordinate to one inch
c.setFillColorRGB(0,0,1) # fill colour
l1=c.getAvailableFonts() # list of available fonts
j=1 # to adjust Y coordinate against each row 
for my_font in l1: # loop through all fonts 
    c.setFont(my_font,16) # set font family and size    
    c.drawString(inch,j*inch*0.5,my_font)
    j=j+1
c.showPage() # saves current page
c.save() # stores the file and close  the canvas
font family supported by default in ReportLab

Understanding Geometry

We can use various canvas methods like transform, translate, scale, rotate to manage the layout. Here we will start with using the dimension unit inch
from reportlab.lib.units import inch
from reportlab.lib.pagesizes import letter, A4
We can set the margins of the page like this
c.translate(inch,inch) # set the starting point of coordinate

Drawing Lines

drawing line in pdf page To draw a line we need two coordinates. x1,y1 and x2,y2.
Here we are using inch unit.
To set the colour of the line we used setStrokeColurRGB().
We used setLineWidth(10) to set the thickness of the line.
By using translate() we have set the coordinates by keeping one inch as margin.
from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
from reportlab.lib.pagesizes import letter,A4
my_path='G:\\My drive\\testing\\pypdf2\\my_pdf.pdf'# file path
c = canvas.Canvas(my_path,bottomup=1,pagesize=letter)
c.translate(inch,inch) #starting point of coordinate to one inch
c.setStrokeColorRGB(1,0,0) # red colour of line
c.setLineWidth(10) #width of the line 
c.line(0,8*inch,7*inch,8*inch) # draw line 
c.showPage() # saves current page
c.save() # stores the file and close  the canvas

Adding image to PDF file

Adding image to pdf file We have to specify the x and y coordinates along with the image.
width and height are optional.
c.drawImage('D:\\top2.jpg',-0.8*inch,9.3*inch)
Here we have fixed the margin by using translate() method, so we used -0.8*inch as X value to keep the image at Left edge.
from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
from reportlab.lib.pagesizes import letter,A4
my_path='G:\\My drive\\testing\\pypdf2\\my_pdf.pdf'
c = canvas.Canvas(my_path,bottomup=1,pagesize=letter)
c.translate(inch,inch) #starting point of coordinates
c.drawImage('D:\\top2.jpg',-0.8*inch,9.3*inch) 
c.showPage() # saves current page
c.save() # stores the file and close  the canvas
We can use Image from URL
c.drawImage('https://www.plus2net.com/images/top2.jpg',-0.8*inch,9.3*inch)

Rotate

Sometime we have to rotate the text or image on the canvas. Here after rotating the object we can restore by using the same offset.
c.rotate(-45)
c.drawImage('D:\\top2.jpg',0,0)
c.rotate(45)

Drawing rectangle

Adding rectangle with border colour to pdf file We can set the width, colour of the border of the rectangle.
c.setLineWidth(10) 
c.setStrokeColor('yellow') 
c.setFillColor('lightgreen')
With these settings , the full code is here.
from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
from reportlab.lib.pagesizes import letter,A4
my_path='G:\\My drive\\testing\\pypdf2\\my_pdf.pdf'# file path
c = canvas.Canvas(my_path,bottomup=1,pagesize=letter)
c.translate(inch,inch) # starting point of coordinate to one inch
c.setLineWidth(10) # width of the border of rectangle
c.setStrokeColor('yellow') # border colour
c.setFillColor('lightgreen') # fill colour
c.rect(1*inch,2*inch,3.5*inch,5*inch,fill=1)
c.showPage() # saves current page
c.save() # stores the file and close  the canvas

watermark pdf document

Adding watermark to pdf document We can use text to place watermark over the PDF document.
Here the font colour of the text will make it light gray by using CMYK colour values. Increse the last value if you want more dark colour.
c.rotate(45) # rotate by 45 degree 
# font colour CYAN, MAGENTA, YELLOW and BLACK
c.setFillColorCMYK(0,0,0,0.08) # colour values
c.setFont("Helvetica", 100) # font style and size
c.drawString(2*inch, 1*inch, "SAMPLE") # String written 
c.rotate(-45) # restore the rotation 
Full code with watrmark is here
from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
from reportlab.lib.pagesizes import letter,A4
my_path='G:\\My drive\\testing\\pypdf2\\my_pdf.pdf'# file path
c = canvas.Canvas(my_path,bottomup=1,pagesize=letter)
c.translate(inch,inch) # starting point of coordinate to one inch
c.setLineWidth(10) # width of the border of rectangle
c.setStrokeColor('yellow') # border colour
c.setFillColor('lightgreen') # fill colour
c.rect(1*inch,2*inch,3.5*inch,5*inch,fill=1)
#start watermark 
c.rotate(45) # rotate by 45 degree 
# font colour CYAN, MAGENTA, YELLOW and BLACK
c.setFillColorCMYK(0,0,0,0.08) # colour values
c.setFont("Helvetica", 100) # font style and size
c.drawString(2*inch, 1*inch, "SAMPLE") # String written 
c.rotate(-45) # restore the rotation 
c.setFont("Helvetica", 10)
c.setFillColorRGB(1,0,0) # font colour
c.drawString(0, -0.9*inch, u"\u00A9"+" plus2net.com")
c.showPage() # saves current page
c.save() # stores the file and close  the canvas

PDF Standard Templates

We use letter pads as common template to use for any letter or bill. Using the above concepts we will prepare one standard Letter head and use them to add more text to tour pdf document.

Here are two files main.py will create the pdf document by using template from temp1.py file.

main.py

temp1.py
PDF Mark sheet by using data from SQLite database Generate PDF Invoice using Sales data Table from different data sources to PDF file Table from Pandas DataFrame to PDF file PDF Circles & Shapes
Create Report in PDF using Charts, images, tables and Paragraphs
PDF Id-card ID card from user Inputs in Tkinter
Bar charts in PDF Line charts in PDF Pie Charts Paragraph
Python

Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com



    Post your comments , suggestion , error , requirements etc here





    Python Video Tutorials
    Python SQLite Video Tutorials
    Python MySQL Video Tutorials
    Python Tkinter Video Tutorials
    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer