GetImages

GetImages(IRenderingOptions)

Returns a Image objects for all slides of a presentation.

public IImage[] GetImages(IRenderingOptions options)
ParameterTypeDescription
optionsIRenderingOptionsTiff options.

Return Value

Image objects.

See Also


GetImages(IRenderingOptions, int[])

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

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

Return Value

Image objects.

See Also


GetImages(IRenderingOptions, float, float)

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

public IImage[] GetImages(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

Image objects.

See Also


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

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

public IImage[] GetImages(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

Image objects.

See Also


GetImages(IRenderingOptions, Size)

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

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

Return Value

Image objects.

See Also


GetImages(IRenderingOptions, int[], Size)

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

public IImage[] GetImages(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

Image objects.

See Also