Skip to content

Instantly share code, notes, and snippets.

@conholdate-gists
Created January 22, 2025 02:26
Show Gist options
  • Save conholdate-gists/e5f6655eabedea027f10c8d622fbcb33 to your computer and use it in GitHub Desktop.
Save conholdate-gists/e5f6655eabedea027f10c8d622fbcb33 to your computer and use it in GitHub Desktop.
Convert OneNote to PDF in Java | .ONE to PDF Converter
// Load the document into Aspose.Note.
com.aspose.note.Document doc = new com.aspose.note.Document("Aspose.one");
// Create PdfSaveOptions class object
com.aspose.note.PdfSaveOptions options = new com.aspose.note.PdfSaveOptions();
// Save the output PDF Document
doc.save("NoteToPDF.pdf", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment