get_image method

get_image

Returns a Thumbnail Image object (20% of real size).

Returns

Image object aspose.pydrawing.Bitmap

def get_image(self):
    ...

get_image

Returns an image object with specified size.

Returns

Bitmap object.

def get_image(self, image_size):
    ...
ParameterTypeDescription
image_sizeaspose.pydrawing.SizeSize of the image to create.

get_image

Returns a Thumbnail tiff bitmap object with specified parameters.

Returns

Image object.

def get_image(self, options):
    ...
ParameterTypeDescription
optionsITiffOptionsTiff options.

get_image

Returns a Thumbnail Bitmap object.

Returns

Bitmap objects.

def get_image(self, options):
    ...
ParameterTypeDescription
optionsIRenderingOptionsRendering options.

get_image

Returns an image object with custom scaling.

Returns

Image object aspose.pydrawing.Bitmap

def get_image(self, scale_x, scale_y):
    ...
ParameterTypeDescription
scale_xfloatThe value by which to scale this Thumbnail in the x-axis direction.
scale_yfloatThe value by which to scale this Thumbnail in the y-axis direction.

get_image

Returns a Thumbnail Bitmap object with specified size.

Returns

Bitmap objects.

def get_image(self, options, image_size):
    ...
ParameterTypeDescription
optionsIRenderingOptionsRendering options.
image_sizeaspose.pydrawing.SizeSize of the image to create.

get_image

Returns a Thumbnail Bitmap object with custom scaling.

Returns

Bitmap objects.

def get_image(self, options, scale_x, scale_y):
    ...
ParameterTypeDescription
optionsIRenderingOptionsRendering options.
scale_xfloatThe value by which to scale this Thumbnail in the x-axis direction.
scale_yfloatThe value by which to scale this Thumbnail in the y-axis direction.

See Also