私は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()