Created
January 22, 2025 02:26
-
-
Save conholdate-gists/e5f6655eabedea027f10c8d622fbcb33 to your computer and use it in GitHub Desktop.
Convert OneNote to PDF in Java | .ONE to PDF Converter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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