Python如何读取excel中的图片

872次阅读
没有评论
Python如何读取excel中的图片

学会用Python提取word图片的小伙伴,今天又来学提取excel图片的方法啦。本期文章将通过python的包来提取,对比以往的代码更加简洁方便。

一、环境准备:

  • python3
  • pillow
pip install pillow
  • pypiwin32
pip install pypiwin32

二、操作代码

from PIL import ImageGrab
import win32com.client as win32

excel = win32.gencache.EnsureDispatch('Excel.Application')
workbook = excel.Workbooks.Open(r'C:Usersfile.xlsx')

for sheet in workbook.Worksheets:
    for i, shape in enumerate(sheet.Shapes):
        if shape.Name.startswith('Picture'):
            shape.Copy()
            image = ImageGrab.grabclipboard()
            image.save('{}.jpg'.format(i+1), 'jpeg')
excel.Quit()

三、注意事项

  • 有些xlsx文件可能读取不了,试试换成xls格式
  • 程序运行前不可以有其他程序打开excel文件

今天读取excel图片的方法比较简单,下期还有读取pdf图片的方法。

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-06-08发表,共计654字。
新手QQ群:570568346,欢迎进群讨论 Python51学习