GetThumbnail()

Shape::GetThumbnail() method

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

System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::Shape::GetThumbnail() override

Return Value

Shape thumbnail.

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

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

Returns shape thumbnail.

System::SharedPtr<System::Drawing::Bitmap> Aspose::Slides::Shape::GetThumbnail(ShapeThumbnailBounds bounds, float scaleX, float scaleY) override

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