draw_transparent_image method

draw_transparent_image

Draw transformed transparent image. If image doesn’t have Alpha channel it will be drawn as opaque image

def draw_transparent_image(self, image, transform, transparency_threshold):
    ...
ParameterTypeDescription
imageaspose.pydrawing.BitmapThe image to draw.
transformaspose.pydrawing.drawing2d.MatrixThe matrix to transform image.
transparency_thresholdintA threshold that defines from which value of transparency pixel will be interpreted as fully transparent. All values below this threshold will be interpreted as fully opaque.

See Also