Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active November 11, 2021 04:38
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/52425252083df228f53a53d116caff2b to your computer and use it in GitHub Desktop.
Save aspose-com-gists/52425252083df228f53a53d116caff2b to your computer and use it in GitHub Desktop.
Convert RTF Documents to PDF in Python
import aspose.words as aw
# load RTF document
doc = aw.Document("sample.rtf")
# save as PDF file
doc.save("document.pdf", aw.SaveFormat.PDF)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment