GetThumbnail()

IShape::GetThumbnail() method

Returns shape thumbnail. ShapeThumbnailBounds::Shape shape thumbnail bounds type is used by default.

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

Return Value

Shape thumbnail.

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

IShape::GetThumbnail(ShapeThumbnailBounds, float, float) method

Returns shape thumbnail.

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

Arguments

ParameterTypeDescription
boundsShapeThumbnailBoundsShape thumbnail bounds type.
scaleXfloatX scale
scaleYfloatY scale

Return Value

Shape thumbnail or null in case when ShapeThumbnailBounds::Appearance is used and a shape doesn’t have visible elements.

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

See Also