1、需求表述
由于每天要把excel制作的带格式的表格,截图发到微信,图片部分较多。所以需要Python完成。
2、依赖包 excel2img
# 安装
pip install excel2img
# 太慢则通过清华镜像源安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple excel2img
3、每天excel图表
需求发送图片
4、实现代码
import excel2img
# excel2img.export_img(excel所在路径及文件, 图片存储路径及名称, sheet页, 输出范围)
excel2img.export_img(r'.\test.xlsx', r'.\image1.png', 'Sheet1', 'B2:G12')
excel2img.export_img(r'.\test.xlsx', r'.\image2.png', 'Sheet1', 'B18:P30')