GetThumbnails()

IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions>) method

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

virtual System::ArrayPtr<System::SharedPtr<System::Drawing::Bitmap>> Aspose::Slides::IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions> options)=0

Arguments

ParameterTypeDescription
optionsSystem::SharedPtr<Export::IRenderingOptions>Rendering options.

Return Value

Bitmap objects.

Deprecated
Use GetImages(IRenderingOptions options) method instead. The method will be removed after release of version 24.7.

IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions>, System::ArrayPtr<int32_t>) method

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

virtual System::ArrayPtr<System::SharedPtr<System::Drawing::Bitmap>> Aspose::Slides::IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions> options, System::ArrayPtr<int32_t> slides)=0

Arguments

ParameterTypeDescription
optionsSystem::SharedPtr<Export::IRenderingOptions>Rendering options.
slidesSystem::ArrayPtr<int32_t>Array with slide positions, starting from 1.

Return Value

Bitmap objects.

Deprecated
Use GetImages(IRenderingOptions options, int[] slides) method instead. The method will be removed after release of version 24.7.

IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions>, float, float) method

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

virtual System::ArrayPtr<System::SharedPtr<System::Drawing::Bitmap>> Aspose::Slides::IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions> options, float scaleX, float scaleY)=0

Arguments

ParameterTypeDescription
optionsSystem::SharedPtr<Export::IRenderingOptions>Rendering options.
scaleXfloatThe value by which to scale this Thumbnail in the x-axis direction.
scaleYfloatThe value by which to scale this Thumbnail in the y-axis direction.

Return Value

Bitmap objects.

Deprecated
Use GetImages(IRenderingOptions options, float scaleX, float scaleY) method instead. The method will be removed after release of version 24.7.

IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions>, System::ArrayPtr<int32_t>, float, float) method

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

virtual System::ArrayPtr<System::SharedPtr<System::Drawing::Bitmap>> Aspose::Slides::IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions> options, System::ArrayPtr<int32_t> slides, float scaleX, float scaleY)=0

Arguments

ParameterTypeDescription
optionsSystem::SharedPtr<Export::IRenderingOptions>Rendering options.
slidesSystem::ArrayPtr<int32_t>Array with slide positions, starting from 1.
scaleXfloatThe value by which to scale this Thumbnail in the x-axis direction.
scaleYfloatThe value by which to scale this Thumbnail in the y-axis direction.

Return Value

Bitmap objects.

Deprecated
Use GetImages(IRenderingOptions options, int[] slides, float scaleX, float scaleY) method instead. The method will be removed after release of version 24.7.

IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions>, System::Drawing::Size) method

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

virtual System::ArrayPtr<System::SharedPtr<System::Drawing::Bitmap>> Aspose::Slides::IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions> options, System::Drawing::Size imageSize)=0

Arguments

ParameterTypeDescription
optionsSystem::SharedPtr<Export::IRenderingOptions>Rendering options.
imageSizeSystem::Drawing::SizeSize of the image to create.

Return Value

Bitmap objects.

Deprecated
Use GetImages(IRenderingOptions options, Size imageSize) method instead. The method will be removed after release of version 24.7.

IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions>, System::ArrayPtr<int32_t>, System::Drawing::Size) method

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

virtual System::ArrayPtr<System::SharedPtr<System::Drawing::Bitmap>> Aspose::Slides::IPresentation::GetThumbnails(System::SharedPtr<Export::IRenderingOptions> options, System::ArrayPtr<int32_t> slides, System::Drawing::Size imageSize)=0

Arguments

ParameterTypeDescription
optionsSystem::SharedPtr<Export::IRenderingOptions>Rendering options.
slidesSystem::ArrayPtr<int32_t>Array with slide positions, starting from 1.
imageSizeSystem::Drawing::SizeSize of the image to create.

Return Value

Bitmap objects.

Deprecated
Use GetImages(IRenderingOptions options, int[] slides, Size imageSize) method instead. The method will be removed after release of version 24.7.

See Also