我正在使用 ReportLab 使用 Python 制作 pdf。我想在画布上添加一个形状,并让该形状充当超链接。在以下示例链接到 google.com 中制作矩形的最简单方法是什么?
from reportlab.pdfgen import canvas
from reportlab.lib.units import inch
c = canvas.Canvas("hello.pdf")
# move the origin up and to the left, draw square
c.translate(inch,9*inch)
# How do I make this rectangle link to google.com?
c.rect(inch,inch,1*inch,1*inch, fill=1)
c.showPage()
c.save()