add second page with figure to existing pdf

329 Views Asked by At

Can you help me please, how to add pylab plt, to second page of my pdf. I have next code for text, so the first page of my report will be text, on second page i wan't to insert the plot. How can i add second page and save plt.savefig("my.pdf") to the second page of my pdf file?

c = canvas.Canvas('my.pdf', pagesize=landscape(letter))
c.setFont('Helvetica', 35, leading=None)
c.drawCentredString(415,500, "Name")
c.setFont('Helvetica', 34, leading=None)
c.drawCentredString(415,440, "Surname")
c.setFont('Helvetica',24, leading=None)
c.drawCentredString(415,395, "Igorj Borin")
c.setFont('Helvetica-Bold', 16, leading=None)
c.drawCentredString(415,350, "Vasja pupkin")
c.setFont('Helvetica-Bold', 20, leading=None)
c.drawCentredString(415,310, strftime("%d/%m/%Y %H:%M:%S", gmtime()))
c.showPage()
c.save()

plt.savefig("my.pdf") 
1

There are 1 best solutions below

2
On

If you have a bitmap image, like png, jpg, gif, bmp (oh dear..), you could add the following lines in front of your call to c.save():

from reportlab.lib.units import inch, cm  # 72 dpi -> inch = 72 
c.drawImage('my.png',2.5*cm, 5*cm, 4*inch, 3*inch) # parameters: filename, spacing from left and bottom, with width and height

Reportlab doesn't seem to handle vector images well, even with PIL installed, it will result in an IOError: cannot identify image file if you use it on the image exported as pdf. However, you could e.g. use ghostscript to merge pdfs, regardless of their content. But then you won't have the typical reportlab styling.