Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active December 4, 2021 03:54
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/a47f7e6f38b14c376c6bd47067cd89aa to your computer and use it in GitHub Desktop.
Save aspose-com-gists/a47f7e6f38b14c376c6bd47067cd89aa to your computer and use it in GitHub Desktop.
Convert TXT Files to PDF in C#
// Load TXT file
Document document = new Document("sample.txt");
// Save TXT file as PDF
document.Save("output.pdf", SaveFormat.Pdf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment