insert_image method

insert_image

Inserts image in the worksheet from file stream or the URL,(either the file stream or the URL shall be provided) or Inserts shape ,when the p.type is one of AutoShapeType

Returns

The JSON format string of the inserted image

def insert_image(self, uid, p, s, image_url):
    ...
ParameterTypeDescription
uidstrThe unique id for the file cache
pstrThe JSON format string for the operation which specify the cell location ,the worksheet name,upper left row,upper left column for the image,etc {name:‘sheet1’,ri:1,ci:1}
sio.RawIOBaseThe file stream of the image file
image_urlstrThe URL of the image file

See Also