Extract a Notes Slide

Introduction

Aspose.Slides Cloud API allows you to extract a Notes slide from a PowerPoint presentation. You can use the following methods in your applications to retrieve notes from a presentation slide and convert the result to the specified format. The output file format can be image format, PowerPoint format, PDF, HTML, etc. The default width and height of output images or pages can also be changed if you wish. If some custom fonts are used for the notes, you can specify a path to the folder containing the fonts for displaying the text of the notes, as in the original Notes Page of the presentation.

DownloadNotesSlide

API Information

API Type Description Resource
/slides/{name}/slides/{slideIndex}/notesSlide/{format} GET Retrieves a Notes slide from a presentation slide in the specified format. DownloadNotesSlide

Request Parameters

Name Type Location Required Description
name string path true The name of the presentation file.
slideIndex integer path true The 1-based index of the slide.
format string path true The output file format. Available values: Jpeg, Png, Gif, Bmp, Tiff, Html, Pdf, Xps, Pptx, Odp, Otp, Ppt, Pps, Ppsx, Pptm, Ppsm, Potx, Pot, Potm, Svg, Fodp, Xaml, Html5. The default value is Jpeg.
width integer query false The width of the output image or page. The slide width is used by default.
height integer query false The height of the output image or page. The slide height is used by default.
password string header false The password to open the presentation.
folder string query false The path to the folder containing the presentation.
storage string query false The name of the storage contaning the folder.
fontsFolder string query false The storage folder containing custom fonts used with the notes on the Notes Page.

In case of Amazon S3 storage folder path starts with Amazon S3 bucket name.

Examples

Extract a Notes slide from the second slide in the document MyFolder/MyPresentation.pptx saved to the default storage. Save the result to a PDF file.

cURL Solution

SDK Solutions

DownloadNotesSlideOnline

API Information

API Type Description Resource
/slides/slides/{slideIndex}/notesSlide/{format} POST Retrieves a Notes slide from a presentation slide in the specified format. DownloadNotesSlideOnline

Request Parameters

Name Type Location Required Description
document file formData true The document data of the presentation.
slideIndex integer path true The 1-based index of the slide.
format string path true The output file format. Available values: Jpeg, Png, Gif, Bmp, Tiff, Html, Pdf, Xps, Pptx, Odp, Otp, Ppt, Pps, Ppsx, Pptm, Ppsm, Potx, Pot, Potm, Svg, Fodp, Xaml, Html5. The default value is Jpeg.
width integer query false The width of the output image or page. The slide width is used by default.
height integer query false The height of the output image or page. The slide height is used by default.
password string header false The password to open the presentation.
fontsFolder string query false The storage folder containing custom fonts used with the notes on the Notes Page.

In case of Amazon S3 storage folder path starts with Amazon S3 bucket name.

Examples

Extract a Notes slide from the second slide in the local file MyPresentation.pptx. Save the result to an XPS file.

cURL Solution

SDK Solutions

SDKs

Check Available SDKs to learn how to add an SDK to your project.