Create Shape Thumbnails

Aspose.Slides for Python via .NET 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 Python via .NET 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 Python via .NET:

  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.

import aspose.slides as slides
import aspose.pydrawing as draw

# Instantiate a Presentation class that represents the presentation file
with slides.Presentation(path + "HelloWorld.pptx") as presentation:
    # Create a full scale image
    with presentation.slides[0].shapes[0].get_thumbnail() as bitmap:
        # Save the image to disk in PNG format
        bitmap.save("Shape_thumbnail_out.png", draw.imaging.ImageFormat.png)

Generate User Defined Scaling Factor Thumbnail

To generate the shape thumbnail of any slide shape using Aspose.Slides for Python via .NET:

  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.

import aspose.slides as slides
import aspose.pydrawing as draw

# Instantiate a Presentation class that represents the presentation file
with slides.Presentation(path + "HelloWorld.pptx") as p:
    # Create a full scale image
    with p.slides[0].shapes[0].get_thumbnail(slides.ShapeThumbnailBounds.SHAPE, 1, 1) as bitmap:
        # Save the image to disk in PNG format
        bitmap.save("Scaling Factor Thumbnail_out.png", draw.imaging.ImageFormat.png)

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.

import aspose.slides as slides
import aspose.pydrawing as draw

# Instantiate a Presentation class that represents the presentation file
with slides.Presentation(path + "HelloWorld.pptx") as presentation:
    # Create a Appearance bound shape image
    with presentation.slides[0].shapes[0].get_thumbnail(slides.ShapeThumbnailBounds.APPEARANCE, 1, 1) as bitmap:
        # Save the image to disk in PNG format
        bitmap.save("Shape_thumbnail_Bound_Shape_out.png", draw.imaging.ImageFormat.png)