I tried to insert GIF image in excel cell but it error occurs:
AttributeError: module 'openpyxl.drawing' has no attribute 'Image'
I'm using the last version of OPENPYXL
code:
image = openpyxl.drawing.Image(image)
image.anchor(ws.cell('E'+str(i+1)))
ws.add_image(image)
Does anybody have the issue like this?