GetImage()

ISlide::GetImage(float, float) method

Returns an image object with custom scaling.

virtual System::SharedPtr<IImage> Aspose::Slides::ISlide::GetImage(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

Image object System::Drawing::Bitmap

ISlide::GetImage() method

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

virtual System::SharedPtr<IImage> Aspose::Slides::ISlide::GetImage()=0

Return Value

Image object System::Drawing::Bitmap

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

Returns an image object with specified size.

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

Arguments

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

Return Value

Bitmap object.

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

Returns a Thumbnail tiff bitmap object with specified parameters.

virtual System::SharedPtr<IImage> Aspose::Slides::ISlide::GetImage(System::SharedPtr<Export::ITiffOptions> options)=0

Arguments

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

Return Value

Image object.

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

Returns a Thumbnail Bitmap object.

virtual System::SharedPtr<IImage> Aspose::Slides::ISlide::GetImage(System::SharedPtr<Export::IRenderingOptions> options)=0

Arguments

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

Return Value

Bitmap objects.

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

Returns a Thumbnail Bitmap object with custom scaling.

virtual System::SharedPtr<IImage> Aspose::Slides::ISlide::GetImage(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.

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

Returns a Thumbnail Bitmap object with specified size.

virtual System::SharedPtr<IImage> Aspose::Slides::ISlide::GetImage(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.

See Also