如何使用reportlab在图像上方叠加文本超链接?

时间:2018-09-17 11:31:27

标签: python pdf reportlab platypus

我正在尝试创建一个包含许多页面的pdf文档。每个页面都包含一个图像,在该图像的顶部是显示文本,并带有指向其他页面的超链接。

我设法使用reportlab.pdfgen和矩形链接来做到这一点,不幸的是所使用的阅读器(电子阅读器)无法识别这种类型的链接。

相反,我设法创建了文本嵌入的超链接(使用How to add a link to the word using reportlab?),这些超链接可以被电子阅读器识别,但是我没有设法将它们覆盖在图像上。

我试图使用本文(reportlab: add background image by using platypus)中提供的解决方案将图像用作背景,但是它不起作用。当我将文档的页面大小设置为图像大小时,该段落不会显示。当我将其设置为大于图像大小时,该段落将显示在图像上方,而不覆盖该图像。

这是我的代码:

from reportlab.lib.styles import getSampleStyleSheet
from reportlab.platypus import BaseDocTemplate, PageTemplate, Frame, Paragraph


def draw_static(canvas, doc):
    # Save the current settings
    canvas.saveState()

    # Draw the image
    canvas.drawImage(r'path\to\the\image.png', 0, 0, width=500, height=500)

    # Restore setting to before function call
    canvas.restoreState()


# Set up a basic template
doc = BaseDocTemplate('test.pdf', pagesize=(500, 500))

# Create a Frame for the Flowables (Paragraphs and such)
frame = Frame(doc.leftMargin, doc.bottomMargin, 500, 500, id='normal')

# Add the Frame to the template and tell the template to call draw_static for each page
template = PageTemplate(id='test', frames=[frame], onPage=draw_static)

# Add the template to the doc
doc.addPageTemplates([template])

# All the default stuff for generating a document
styles = getSampleStyleSheet()
story = []

link = '<link href="http://example.com">Text</link>'

P = Paragraph(link, styles["Normal"])

story.append(P)
doc.build(story)

PS:该代码并不完整(不会创建多个页面,等等),但这只是尝试在图像上覆盖文本嵌入式超链接的一个最小示例。

1 个答案:

答案 0 :(得分:0)

我终于找到了一个简单的解决方案,仅使用鸭嘴兽的帧并结合pdfgen工具即可。

解决方案:

from reportlab.pdfgen import canvas
from reportlab.platypus import Paragraph, Frame
from reportlab.lib.styles import getSampleStyleSheet
from reportlab.lib.units import inch

c = canvas.Canvas("test.pdf")

styles = getSampleStyleSheet()
style = styles['Title']

items = []
link = '<link href="http://example.com">Text</link>'
items.append(Paragraph(link, style))

# Drawing the image
c.drawInlineImage(r'path\to\image', 0, 0)

# Create a Frame for the paragraph
f = Frame(inch, inch, inch, inch, showBoundary=1)
f.addFromList(items, c)

c.save()