add_picture method

add_picture(self, top_row, left_column, bottom_row, right_column, stream)

Adds a picture to the collection.

Returns

Picture Picture object.


def add_picture(self, top_row, left_column, bottom_row, right_column, stream):
    ...
ParameterTypeDescription
top_rowintUpper left row index.
left_columnintUpper left column index.
bottom_rowintLower right row index
right_columnintLower right column index
streamio.RawIOBaseStream object which contains the image data.

Example


# add a picture
with open("image.jpg", "rb") as fs:
    picture = shapes.add_picture(1, 0, 1, 0, fs)

add_picture(self, top_row, left_column, stream, width_scale, height_scale)

Adds a picture to the collection.

Returns

Picture Picture object.


def add_picture(self, top_row, left_column, stream, width_scale, height_scale):
    ...
ParameterTypeDescription
top_rowintUpper left row index.
left_columnintUpper left column index.
streamio.RawIOBaseStream object which contains the image data.
width_scaleintScale of image width, a percentage.
height_scaleintScale of image height, a percentage.

Example


# add a picture
with open("image.jpg", "rb") as fs:
    picture = shapes.add_picture(1, 1, fs, 50, 60)

See Also