draw_bitmap method

draw_bitmap

Draws the specified source rectangle of the given bitmap onto the specified destination rectangle of the current bitmap.

def draw_bitmap(self, src_rect, dst_rect, bitmap):
    ...
ParameterTypeDescription
src_rectaspose.pydrawing.RectangleThe source rectangle within the source bitmap.
dst_rectaspose.pydrawing.RectangleThe destination rectangle within the current bitmap.
bitmapIBitmapThe source bitmap IBitmap from which to draw.

See Also