Python如何读取excel中的图片

python

学会用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图片的方法,大家不要错过哦~更多Python学习推荐:云海天Python教程网。

以上是 Python如何读取excel中的图片 的全部内容, 来源链接: utcz.com/z/529406.html

回到顶部