I've had a quick look around the web and haven't been able to find a way to set the background colour of a PDF when generating one using ReportLab in Python. How does one set the background colour?
Python ReportLab set background colour
11.4k Views Asked by Often Right At
3
There are 3 best solutions below
1

Instead of using complex methods use this simple trick:
import reportlab
from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
from reportlab.lib.pagesizes import letter
from reportlab.lib.pagesizes import A4
from reportlab.lib.units import inch
from reportlab.lib.units import cm
def background(c):
c.setFillColorRGB(1,0,0)
c.rect(5,5,652,792,fill=1)
c=canvas.Canvas("Background",pagesize=letter)
c.setTitle("Background")
background(c)
c.showPage()
c.save()
Just draw a rectangle with coordinates same as that of pdf page and fill with colour of choice.
1

The docs are unfortunately somewhat cryptic at times. But for anyone who stumbles across this and still uses report lab (like me)
This is an x-y grid. You need to think from lef to right and from bottom to top. Hopefully this helps to make sense of things.
For a top banner, about 10cm in height:
from reportlab.pdfgen import canvas
from reportlab.lib.pagesizes import A4
from reportlab.lib.units import cm
A4_height = A4[1]
A4_width = A4[0]
left_padding = 0
bottom_padding = A4_height - 10*cm
width = A4_width
height = A4_height - bottom_padding
canvas = Canvas()
canvas.setFillColorRGB(0,0,0)
canvas.rect(left_padding, bottom_padding, width, height, fill=1)
For a complete black page:
from reportlab.pdfgen import canvas
from reportlab.lib.pagesizes import A4
from reportlab.lib.units import cm
A4_height = A4[1]
A4_width = A4[0]
left_padding = 0
bottom_padding = 0
width = A4_width
height = A4_height
canvas = Canvas()
canvas.setFillColorRGB(0,0,0)
canvas.rect(left_padding, bottom_padding, width, height, fill=1)
I figured out a makeshift way of doing it. Assuming you have an A4-sized page (which is the default), you can simply specify your own shape like so:
Of course, if you wanted a more robust method, you could substitute the exact measurements I have specified for variables which you can change dynamically e.g.:
Hopefully this helps anyone who finds themselves in a similar situation as I did!