Shape Thumbnails

Create Shape Thumbnail

Aspose.Slides for C++ is used to create presentation files where each page is a slides. These slides can be viewed by opening the presentation files using Microsoft PowerPoint. But sometimes, developers may need to view the images of the shapes separately in an image viewer. In such cases, Aspose.Slides for C++ helps you generate thumbnail images of the slide shapes. How to use this feature is described in this article. This article explains how to generate slide thumbnails in different ways:

  • Generating a shape thumbnail inside a slide.
  • Generating a shape thumbnail for a slide shape with user defined dimensions.
  • Generating a shape thumbnail in the bounds of a shape’s appearance.
  • Generating a thumbnail of SmartArt child node.

Generate Shape Thumbnail from Slide

To generate a shape thumbnail from any slide using Aspose.Slides for C++:

  1. Create an instance of the Presentation class.
  2. Obtain the reference of any slide using its ID or index.
  3. Get the shape thumbnail image of the referenced slide on default scale.
  4. Save the thumbnail image to any desired image format.

The example below generating shape thumbnail.

Generate User Defined Scaling Factor Thumbnail

To generate the shape thumbnail of any slide shape using Aspose.Slides for C++:

  1. Create an instance of the Presentation class.
  2. Obtain the reference of any slide using its ID or index.
  3. Get the thumbnail image of the referenced slide with shape bounds.
  4. Save the thumbnail image in any desired image format.

The example below generate a thumbnail with generating a thumbnail with user defined scaling factor.

Create Bounds Shape’s Appearance Thumbnail

This method for creating thumbnails of shapes allows developers to generate a thumbnail in the bounds of the shape’s appearance. It takes into account all the shape effects. The generated shape thumbnail is restricted by the slide bounds. To generate a thumbnail of any slide shape in bound of its appearance, use following sample code:

  1. Create an instance of the Presentation class.
  2. Obtain the reference of any slide using its ID or index.
  3. Get the thumbnail image of the referenced slide with shape bounds as appearance.
  4. Save the thumbnail image in any desired image format.

The example below create a thumbnail with generating a thumbnail with user defined scaling factor.