我使用 Python 2.7.3 我需要通过 openpyxl 库将本地图片的超链接写入单元格。
当我需要向网站添加超链接时,我会写如下内容:
从 openpyxl 导入工作簿
wb = Workbook()
dest_filename = r'empty_book.xlsx'
ws = wb.worksheets[0]
ws.title = 'Name'
hyperlink to local picture
ws.cell('B1').hyperlink = ('http://pythonhosted.org/openpyxl/api.html')
hyperlink to local picture
ws.cell('B2').hyperlink = ('1.png') # It doesn't work!
wb.save(filename = dest_filename)
我有3个问题:
- 我们如何像 VBA 的样式函数那样编写超链接:
ActiveCell.FormulaR1C1 = _ "=HYPERLINK(""http://stackoverflow.com/questions/ask"",""site"")"
使用 hyherlink 和她的名字 - 我们如何编写本地图像的超链接?
ws.cell('B2').hyperlink = ('1.png') # It doesn't work! And I don't now what to do ) Plese, help me )
- 我们可以使用 unicode 超链接来图像吗?例如当我使用
ws.cell('B1').hyperlink = (u'http://pythonhosted.org/openpyxl/api.html') It fail with error! for example we have picture 'russian_language_name.png' and we create hyperlink in exel without any problem. We click to the cell, and then print '=Hyperlink("http://stackoverflow.com/questions/ask";"site_by_russian_language")
保存文件,解压他。然后我们去他的目录到 xl->worksheets->sheet1.xml 我们看到标题
<?xml version="1.0" encoding="UTF-8" standalone="true"?>
接着 ...
row r="2" x14ac:dyDescent="0.25" spans="2:6">-<c r="B2" t="str" s="1"><f>HYPERLINK("http://stackoverflow.com/questions/ask","site_by_russian_language")</f><v>site_by_russian_language</v></c>
一切正常 =) Exel 支持 unicode,但是 python 的库 openpyxl 呢?它支持超链接中的 unicode 吗?