从docs开始,insert_image
功能采用以下选项:
{
'x_offset': 0,
'y_offset': 0,
'x_scale': 1,
'y_scale': 1,
'url': None,
'tip': None,
'image_data': None,
'positioning': None,
}
问题是我需要插入的输入图像的大小可能会有所不同,但需要的单元格大小是固定的。是否有可能以某种方式提供宽度和高度,让Excel将图像调整为提供的尺寸?
答案 0 :(得分:5)
我认为它没有内置的扩展方式,也能保持宽高比。你必须自己计算。
如果您想以目标分辨率调整文件大小并提交文件(可能会缩小文件大小),请使用pillow
thumbnail()
图像方法和{{1 } xlsxwriter
选项:
image_data
如果你想保持原始分辨率并让excel进行内部缩放但也适合你提供的范围,你可以在将它赋予excel之前计算出正确的缩放因子:
import io
from PIL import Image
def get_resized_image_data(file_path, bound_width_height):
# get the image and resize it
im = Image.open(file_path)
im.thumbnail(bound_width_height, Image.ANTIALIAS) # ANTIALIAS is important if shrinking
# stuff the image data into a bytestream that excel can read
im_bytes = io.BytesIO()
im.save(im_bytes, format='PNG')
return im_bytes
# use with xlsxwriter
image_path = 'asdf.png'
bound_width_height = (240, 240)
image_data = get_resized_image_data(image_path, bound_width_height)
# sanity check: remove these three lines if they cause problems
im = Image.open(image_data)
im.show() # test if it worked so far - it does for me
im.seek(0) # reset the "file" for excel to read it.
worksheet.insert_image(cell, image_path, {'image_data': image_data})
答案 1 :(得分:3)
您可以使用XlsxWriter以及x_scale
和y_scale
根据单元格和图像的高度和宽度在外部或Excel中缩放图像。
例如:
import xlsxwriter
workbook = xlsxwriter.Workbook('image_scaled.xlsx')
worksheet = workbook.add_worksheet()
image_width = 140.0
image_height = 182.0
cell_width = 64.0
cell_height = 20.0
x_scale = cell_width/image_width
y_scale = cell_height/image_height
worksheet.insert_image('B2', 'python.png',
{'x_scale': x_scale, 'y_scale': y_scale})
workbook.close()
这样缩放的优点是用户可以通过在Excel中将缩放设置回100%来恢复原始图像。