Python+EXCEL:如何以编程方式在注释中插入图片

python + excel: how to programmatically insert picture into comment(Python+EXCEL:如何以编程方式在注释中插入图片)
本文介绍了Python+EXCEL:如何以编程方式在注释中插入图片的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要将图片插入到Excel单元格注释框中。我所指的示例here。

是否有办法使用现有的python库来实现此目的?

我看过openpyxl和xlsxwriter文档--它们似乎只允许创建文本注释。

xlsx Writer允许您更改注释框的背景色,但似乎没有插入图片的解决方案。

推荐答案

我想要相同的功能,但在任何Python库中都找不到它。

我最终使用了Excel的"宏"功能,您可以在"开发人员"选项卡下找到它。 您需要在文件->选项->自定义功能区中启用它;它位于主选项卡的右侧。

选择"Macro"后,为其指定一个名称,然后点击Create It Share Create the Sub for 您可以在哪里编写此Visual Basic代码:

数据-lang="js"数据-隐藏="假"数据-控制台="真"数据-巴贝尔="假">
Sub addPic()
'
' Macro3 Macro
'
    Dim pic_file As String
    Dim pic_resolution As Long
    Dim pict As Object
    
    If ActiveCell.Comment Is Nothing Then ActiveCell.AddComment
    pic_file = Application.GetOpenFilename("GIF (*.GIF), *.GIF", Title:="Select chord picture: ")
    Set pict = CreateObject("WIA.ImageFile")
    pict.loadfile pic_file
    pic_resolution = pict.VerticalResolution
    
  With ActiveCell.Comment.Shape
     .Fill.Visible = msoTrue
     .Fill.UserPicture (pic_file)
     .Height = pict.Height / pic_resolution * 96
     .Width = pict.Width / pic_resolution * 96
   End With
 
  Set pict = Nothing
   
  ActiveCell.Comment.Visible = False
End Sub

您可以根据需要更改.GIF扩展名和分辨率。 最后,您应该选择一个可以选择的键盘快捷键 在宏->(选择宏)->选项

这篇关于Python+EXCEL:如何以编程方式在注释中插入图片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)