insert_image method

insert_image(self, uid, p, s, image_url)

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
uidSystem.StringThe unique id for the file cache
pSystem.StringThe 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_urlSystem.StringThe URL of the image file

See Also