GetThumbnails

GetThumbnails(IRenderingOptions)

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

public Bitmap[] GetThumbnails(IRenderingOptions options)
ParameterTypeDescription
optionsIRenderingOptionsTiff options.

Return Value

Bitmap objects.

See Also


GetThumbnails(IRenderingOptions, int[])

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

public Bitmap[] GetThumbnails(IRenderingOptions options, int[] slides)
ParameterTypeDescription
optionsIRenderingOptionsTiff options.
slidesInt32[]Array with slide positions, starting from 1.

Return Value

Bitmap objects.

See Also


GetThumbnails(IRenderingOptions, float, float)

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

public Bitmap[] GetThumbnails(IRenderingOptions options, float scaleX, float scaleY)
ParameterTypeDescription
optionsIRenderingOptionsTiff options.
scaleXSingleThe value by which to scale this Thumbnail in the x-axis direction.
scaleYSingleThe value by which to scale this Thumbnail in the y-axis direction.

Return Value

Bitmap objects.

See Also


GetThumbnails(IRenderingOptions, int[], float, float)

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

public Bitmap[] GetThumbnails(IRenderingOptions options, int[] slides, float scaleX, float scaleY)
ParameterTypeDescription
optionsIRenderingOptionsTiff options.
slidesInt32[]Array with slide positions, starting from 1.
scaleXSingleThe value by which to scale this Thumbnail in the x-axis direction.
scaleYSingleThe value by which to scale this Thumbnail in the y-axis direction.

Return Value

Bitmap objects.

See Also


GetThumbnails(IRenderingOptions, Size)

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

public Bitmap[] GetThumbnails(IRenderingOptions options, Size imageSize)
ParameterTypeDescription
optionsIRenderingOptionsTiff options.
imageSizeSizeSize of the image to create.

Return Value

Bitmap objects.

See Also


GetThumbnails(IRenderingOptions, int[], Size)

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

public Bitmap[] GetThumbnails(IRenderingOptions options, int[] slides, Size imageSize)
ParameterTypeDescription
optionsIRenderingOptionsTiff options.
slidesInt32[]Array with slide positions, starting from 1.
imageSizeSizeSize of the image to create.

Return Value

Bitmap objects.

See Also