PDF Page Thumbnails

Is there a way to create a navigation pane with aspose.pdf with page thumbnails.

@rileyja,
You can use the ChangeViewerPreference method of PdfContentEditor class to show the navigation pane with page thumbnails. Please use the following code snippet to achieve the goal:

[C#]

//create PdfContentEditor object
PdfContentEditor editor = new PdfContentEditor();
//bind input PDF file
editor.BindPdf(@"C:\Pdf\test158\EmptyPdf.pdf");
//change Viewer Preferences
editor.ChangeViewerPreference(ViewerPreference.PageModeUseThumbs);
//save output PDF file
editor.Save(@"C:\Pdf\test158\output.pdf");

Best Regards,
Imran Rafique