get_images method

get_images

Returns a Image objects for all slides of a presentation.

Returns

Image objects.

def get_images(self, options):
    ...
ParameterTypeDescription
optionsIRenderingOptionsTiff options.

get_images

Returns a Thumbnail Image objects for specified slides of a presentation.

Returns

Image objects.

def get_images(self, options, slides):
    ...
ParameterTypeDescription
optionsIRenderingOptionsTiff options.
slidesList[int]Array with slide positions, starting from 1.

get_images

Returns a Thumbnail Image objects for all slides of a presentation with specified size.

Returns

Image objects.

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

get_images

Returns a Thumbnail Image objects for all slides of a presentation with custom scaling.

Returns

Image objects.

def get_images(self, options, scale_x, scale_y):
    ...
ParameterTypeDescription
optionsIRenderingOptionsTiff 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.

get_images

Returns a Thumbnail Image objects for specified slides of a presentation with specified size.

Returns

Image objects.

def get_images(self, options, slides, image_size):
    ...
ParameterTypeDescription
optionsIRenderingOptionsTiff options.
slidesList[int]Array with slide positions, starting from 1.
image_sizeaspose.pydrawing.SizeSize of the image to create.

get_images

Returns a Thumbnail Image objects for specified slides of a presentation with custom scaling.

Returns

Image objects.

def get_images(self, options, slides, scale_x, scale_y):
    ...
ParameterTypeDescription
optionsIRenderingOptionsTiff options.
slidesList[int]Array with slide positions, starting from 1.
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