get_thumbnails method

get_thumbnails

Returns a Thumbnail Bitmap objects for all slides of a presentation.

Returns

Bitmap objects.

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

get_thumbnails

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

Returns

Bitmap objects.

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

get_thumbnails

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

Returns

Bitmap objects.

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

get_thumbnails

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

Returns

Bitmap objects.

def get_thumbnails(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.

get_thumbnails

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

Returns

Bitmap objects.

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

get_thumbnails

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

Returns

Bitmap objects.

def get_thumbnails(self, options, slides, scale_x, scale_y):
    ...
ParameterTypeDescription
optionsIRenderingOptionsRendering 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