GetThumbnail()

ISlide::GetThumbnail(float, float) method

Returns a Thumbnail Bitmap object with custom scaling.

virtual System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::ISlide::GetThumbnail(float scaleX, float scaleY)=0

Arguments

ParameterTypeDescription
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 object System::Drawing::Bitmap

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

ISlide::GetThumbnail() method

Returns a Thumbnail Image object (20% of real size).

virtual System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::ISlide::GetThumbnail()=0

Return Value

Bitmap object System::Drawing::Bitmap

Deprecated
Use GetImage method instead. The method will be removed after release of version 24.7.

ISlide::GetThumbnail(System::Drawing::Size) method

Returns a Thumbnail Bitmap object with specified size.

virtual System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::ISlide::GetThumbnail(System::Drawing::Size imageSize)=0

Arguments

ParameterTypeDescription
imageSizeSystem::Drawing::SizeSize of the image to create.

Return Value

Bitmap object.

Deprecated
Use GetImage(Size imageSize) method instead. The method will be removed after release of version 24.7.

ISlide::GetThumbnail(System::SharedPtr<Export::ITiffOptions>) method

Returns a Thumbnail tiff bitmap object with specified parameters.

virtual System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::ISlide::GetThumbnail(System::SharedPtr<Export::ITiffOptions> options)=0

Arguments

ParameterTypeDescription
optionsSystem::SharedPtr<Export::ITiffOptions>Tiff options.

Return Value

Bitmap object.

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

ISlide::GetThumbnail(System::SharedPtr<Export::IRenderingOptions>) method

Returns a Thumbnail Bitmap object.

virtual System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::ISlide::GetThumbnail(System::SharedPtr<Export::IRenderingOptions> options)=0

Arguments

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

Return Value

Bitmap objects.

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

ISlide::GetThumbnail(System::SharedPtr<Export::IRenderingOptions>, float, float) method

Returns a Thumbnail Bitmap object with custom scaling.

virtual System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::ISlide::GetThumbnail(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 GetImage(IRenderingOptions options, float scaleX, float scaleY) method instead. The method will be removed after release of version 24.7.

ISlide::GetThumbnail(System::SharedPtr<Export::IRenderingOptions>, System::Drawing::Size) method

Returns a Thumbnail Bitmap object with specified size.

virtual System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::ISlide::GetThumbnail(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 GetImage(IRenderingOptions options, Size imageSize) method instead. The method will be removed after release of version 24.7.

See Also