使用python读取选中的png格式图片,将图中的表格转化为可编辑的excel表格,同时将表格保存在桌面,运用Pillow库和pandas库
时间: 2023-05-21 13:01:12 浏览: 334
windows10程序将gif转化为png图片
你可以使用Pillow库中的Image和ImageOps模块来读取选中的png格式图片,并使用pandas库中的read_html()函数将图中的表格转化为可编辑的excel表格。然后,你可以使用pandas库中的to_excel()函数将表格保存在桌面上。以下是示例代码:
```python
from PIL import Image, ImageOps
import pandas as pd
# 读取选中的png格式图片
img = Image.open('selected_image.png')
# 将图中的表格转化为可编辑的excel表格
inverted_img = ImageOps.invert(img)
table = pd.read_html(inverted_img.tostring())[0]
# 将表格保存在桌面上
table.to_excel('~/Desktop/table.xlsx', index=False)
```
请注意,以上代码仅供参考,具体实现可能因图片和表格的不同而有所不同。
阅读全文