我可以使用以下代码在 python 中使用模块insert_bitmap
命令插入 bmp 图像:xlwt
import xlwt
from PIL import Image
book = xlwt.Workbook()
sheet3 = book.add_sheet('diagrams')
Image.open('violations.png').convert("RGB").save('violations.bmp')
sheet3.insert_bitmap('violations.bmp',5,13)
book.save('simple.xls')
这是将 bmp 图像正确插入工作表,但我担心 bmp 图像大约为 3MB,我无法在没有明显质量损失的情况下对其进行压缩。
有没有办法将 jpeg 图像插入到 unix 的工作表中?