Convert PowerPoint to TIFF with Notes

Convert PPT(X) in Notes Slide View to TIFF

The save method exposed by Presentation class can be used to convert the whole presentation in Notes Slide view to TIFF. The code snippets below update the sample presentation to TIFF images in Notes Slide view, as shown below:

// Instantiate a Presentation object that represents a presentation file
var pres = new aspose.slides.Presentation("demo.pptx");
try {
    var opts = new aspose.slides.TiffOptions();
    opts.getNotesCommentsLayouting().setNotesPosition(aspose.slides.NotesPositions.BottomFull);
    // Saving the presentation to TIFF notes
    pres.save("Tiff-Notes.tiff", aspose.slides.SaveFormat.Tiff, opts);
} finally {
    if (pres != null) {
        pres.dispose();
    }
}

The above code snippets update the sample presentation to TIFF images in Notes Slide view, as shown below:

The source presentation view with slide notes ** 
todo:image_alt_text  
The generated TIFF image in Notes Slide view ** 
todo:image_alt_text