如何在python-docx中将超链接添加到图像 [英] How to add hyperlink to an image in python-docx

查看:103
本文介绍了如何在python-docx中将超链接添加到图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用python docx添加了一个图像.现在,我想添加一个超链接.该怎么做?

I added an image using python docx. Now, I want to add a hyper-link. How to do that?

import io
import urllib
from docx import Document
from docx.shared import Inches

document = Document()
p = document.add_paragraph()
r = p.add_run()
url = r'http://www.example.com/a.jpg'
io_url = io.BytesIO(urllib.request.urlopen(url).read())
r.add_picture(io_url)
#TODO: add a hyperlink 'http://mywebsite.com' to r
document.save('example.docx')

非常感谢您.

推荐答案

docx 库似乎尚未实现向文档添加超链接的功能,但是有一种解决方法在他们的GitHub的发行票中进行了描述.

It seems that the feature to add a hyperlink to a document has not been implemented by the docx library yet, but there's a workaround described in their GitHub's issue ticket.

这是链接;您可以用来添加超链接的特定代码段.您甚至可以为超链接赋予颜色或使其带有带下划线的.我不会复制&将代码粘贴到此处,将为参与广泛讨论的人员提供全部功劳.

Here's the link to the discussion & the particular snippet of code you can use to add hyperlinks. You can even give your hyperlink a color or make it underlined. I won't copy & paste the code here, full credit goes to those involved in the extensive discussion.

下面的代码示例(此变通办法来自GitHub上的johanvandegriff.)

import docx

def add_hyperlink(paragraph, url, text, color, underline):
    """
    A function that places a hyperlink within a paragraph object.

    :param paragraph: The paragraph we are adding the hyperlink to.
    :param url: A string containing the required url
    :param text: The text displayed for the url
    :return: The hyperlink object
    """

    # This gets access to the document.xml.rels file and gets a new relation id value
    part = paragraph.part
    r_id = part.relate_to(url, docx.opc.constants.RELATIONSHIP_TYPE.HYPERLINK, is_external=True)

    # Create the w:hyperlink tag and add needed values
    hyperlink = docx.oxml.shared.OxmlElement('w:hyperlink')
    hyperlink.set(docx.oxml.shared.qn('r:id'), r_id, )

    # Create a w:r element
    new_run = docx.oxml.shared.OxmlElement('w:r')

    # Create a new w:rPr element
    rPr = docx.oxml.shared.OxmlElement('w:rPr')

    # Add color if it is given
    if not color is None:
      c = docx.oxml.shared.OxmlElement('w:color')
      c.set(docx.oxml.shared.qn('w:val'), color)
      rPr.append(c)

    # Remove underlining if it is requested
    if not underline:
      u = docx.oxml.shared.OxmlElement('w:u')
      u.set(docx.oxml.shared.qn('w:val'), 'none')
      rPr.append(u)

    # Join all the xml elements together add add the required text to the w:r element
    new_run.append(rPr)
    new_run.text = text
    hyperlink.append(new_run)

    paragraph._p.append(hyperlink)

    return hyperlink


document = docx.Document()
p = document.add_paragraph()

#add a hyperlink with the normal formatting (blue underline)
hyperlink = add_hyperlink(p, 'http://www.google.com', 'Google', None, True)

#add a hyperlink with a custom color and no underline
hyperlink = add_hyperlink(p, 'http://www.google.com', 'Google', 'FF8822', False)

document.save('demo.docx')

这篇关于如何在python-docx中将超链接添加到图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆