Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created October 26, 2020 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/1da9270970d6f8bbe76284effab3a629 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/1da9270970d6f8bbe76284effab3a629 to your computer and use it in GitHub Desktop.
Convert RTF to PDF in C#
// Load the RTF file to be converted
var document = new Aspose.Words.Document("Document.rtf");
// Convert RTF to a PDF
document.Save("Document.pdf", Aspose.Words.SaveFormat.Pdf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment