Provide a Way to Generate TIFF Image from a Slide with Notes in the Same TIFF

Can you please provide any way to generate a single page tiff like Attached image
image.png (26.8 KB)

@dchavda,
Thank you for contacting support.

To convert a PowerPoint presentation to a TIFF image with slide notes, you can use properties from the TiffOptions class like this:

var options = new TiffOptions();
options.NotesCommentsLayouting.NotesPosition = NotesPositions.BottomFull;

using (var presentation = new Presentation("example.pptx"))
{
    presentation.Save("output.tiff", SaveFormat.Tiff, options);
}

Useful article: Convert PowerPoint to TIFF