draw_image method

draw_image

Draw image.

def draw_image(self, image):
    ...
ParameterTypeDescription
imageaspose.pydrawing.BitmapThe image to draw.

draw_image

Draw transformed image with background.

def draw_image(self, image, transform, bkg):
    ...
ParameterTypeDescription
imageaspose.pydrawing.BitmapThe image to draw.
transformaspose.pydrawing.drawing2d.MatrixThe matrix to transform image.
bkgaspose.pydrawing.ColorBackground for image.

See Also