What is the simplest way to add a hyperlink to a canvas element in ReportLab?
Call linkURL
on the Canvas:
c.linkURL('http://google.com', (inch, inch, 2*inch, 2*inch), relative=1)
The rectangle is the clickable area, so you'd have to match that to the drawn rectangle. The arguments are two coordinates, twice x, y
for the bottom-left and top-right corner.
See more examples in this blog post: http://www.hoboes.com/Mimsy/hacks/adding-links-to-pdf/