0 编辑 关闭 删除 标记 How to insert image into the excel report? 编辑 关闭 删除 标记 odoo 17 二月 2016 退订 订阅 excelreportimages 评论 分享 贴子评论 丢弃 2 答案 0 odoo 14 一月 2021 最佳答案 Hi,You can add the images to excel report like this,if product.image_medium: product_image = io.BytesIO(base64.b64decode(product.image_medium)) sheet.insert_image(row, col, "image.png", {'image_data': product_image})Thanks 备注 分享 贴子评论 丢弃 0 odoo 25 一月 2021 最佳答案 thank you Niyas but how to resize image ? 备注 分享 1 备注 贴子评论 丢弃 odoo - 15 十月 2021 删除 转换为答案 sheet.insert_image('B1', product_image, {'x_scale': 0.6, 'y_scale': 0.8})