Convert Presentation to Tiff with Notes
Contents
[
Hide
]
TIFF is one of several widely used image formats that Aspose.Slides for .NET supports for converting a presentation with notes to images. You can also generate slide thumbnails in the Notes Slide view. Below are two code snippets that shows how to generate TIFF images of a presentation in Notes Slide view.
The Save method exposed by Presentation class can be used to convert the whole presentation in Notes Slide view to TIFF. You can also generate a slide thumbnail in Notes Slide view for individual slides.
Example
//Instantiate a Presentation object that represents a presentation file
Presentation pres = new Presentation("Conversion.pptx");
//Saving the presentation to TIFF notes
pres.Save("ConvertedwithNotes.tiff", SaveFormat.TiffNotes);
Download Running Example
- [CodePlex](https://asposeslidesvsto.codeplex.com/SourceControl/latest#Aspose.Slides Features missing in VSTO/Tiff conversion with note/)
- GitHub
- Code.MSDN
Download Sample Code
For more details, visit Converting Presentation with Notes.