我正在使用python win32来驱动excel 2010.我想将图片插入某些单元格
import win32com.client as win32
from win32com.client import constants as constants
excel = win32.gencache.EnsureDispatch('Excel.Application')
excel.Visible = True
wb = excel.Workbooks.Add()
ws = wb.Worksheets('Sheet1')
ws.Name = 'PicDemo' ## rename worksheet
## select the active sheet
excel.Sheets('PicDemo').Select()
ws = excel.ActiveSheet
ws.Cells(9,9).Select()
## insert a png pic into this cell
ws.Pictures().Insert(pic file path)
我可以在我的电脑上看到插入的图片,但是当我将excel发送给我的朋友时,他们看不到图片,但是红色的十字架带有“无效链接”。
我在网上搜索,很多人抱怨excel 2010中的这个故障。我只是希望图片保存完全没有任何依赖链接。
是否有python win32解决方法?