我需要在openpyxl的一个单元格中添加多个图像。 下面是我的代码。 aa是图片网址的列表。该代码提供了其中图像在单元中重叠的输出。但是我希望图像不重叠。
http = urllib3.PoolManager()
r = http.request('GET',aa[j])
image_file = io.BytesIO(r.data)
if image_file:
img = Image(image_file)
img.height=100
img.width =100
if img:
# ws.row_dimensions[new_row].height = 100
ws.add_image(img,'F'+str(new_row))
答案 0 :(得分:0)
检查线或图像之间的新线运算符是否解决了重叠
根据我的经验,我使用换行符(\ n)写了很长的文本。 像这样 worksheet.cell('B4')。value =“第1行\ n第2行\ n”