Aspose.Total for .NET is a comprehensive suite of APIs that provides powerful document manipulation and conversion features for .NET applications. It includes the Aspose.PDF for .NET API, which allows you to convert XPS file format to DOC. Once the conversion is complete, you can use the Aspose.Words for .NET API to render the DOC file to RTF. This API provides a wide range of features, such as the ability to create, edit, and convert documents, as well as the ability to manipulate document elements, such as text, images, and tables.
The Aspose.PDF for .NET API provides a wide range of features for manipulating PDF documents, such as the ability to create, edit, and convert PDF documents, as well as the ability to extract text, images, and other content from PDF documents. It also provides support for PDF/A-1b, PDF/A-2b, and PDF/A-3b standards, as well as the ability to digitally sign PDF documents.
The Aspose.Words for .NET API provides a wide range of features for manipulating Word documents, such as the ability to create, edit, and convert Word documents, as well as the ability to manipulate document elements, such as text, images, and tables. It also provides support for DOC, DOCX, RTF, and HTML formats, as well as the ability to generate PDF documents from Word documents.
Overall, Aspose.Total for .NET is a powerful suite of APIs that provides a wide range of features for manipulating and converting documents. It provides support for a variety of document formats, as well as the ability to extract text, images, and other content from documents. With Aspose.Total for .NET, you can easily add document manipulation and conversion features to your .NET applications.
C# API to Convert XPS to RTF
Conversion Requirements
Install from command line as nuget install Aspose.Total
or via Package Manager Console of Visual Studio with Install-Package Aspose.Total
.
Alternatively, get the offline MSI installer or DLLs in a ZIP file from downloads .
Document document = new Document("template.xps");
// save XPS as a DOC
document.Save("DocOutput.doc", SaveFormat.Doc);
// load Doc with an instance of Document
var outputDocument = new Aspose.Words.Document("DocOutput.doc");
// call save method while passing SaveFormat.Rtf
outputDocument.Save("output.rtf", SaveFormat.Rtf);
Decrypt XPS File using Owner Password via .NET
Before converting XPS to RTF, if you want to decrypt your document you can do it by using the API. In order to decrypt the PDF file, you first need to create a Document object and open the XPS using the owner’s password. After that, you need to call Decrypt method of the Document object. Finally, save the updated file using Save method of the Document object.
Document document = new Document("Decrypt.xps", "password");
// decrypt XPS
document.Decrypt();
// save the decrypted document as doc
document.Save("Decrypt_out.doc");
Create ReadOnly RTF- File via .NET
In order to protect your RTF from editing and to prevent other people from editing sensitive and confidential information in your document, you can also set the protection of the document using the API. You can limit the ability to edit a document and only allow certain actions with it. This can be done using Aspose.Words for .NET API. It enables you to control the way you restrict the content using the ProtectionType enumeration parameter. You can set your document to read-only by using the following lines of code.
Document document = new Document("input.doc");
// apply document protection and set protection password
doc.Protect(ProtectionType.ReadOnly, "password");
// call save method while passing SaveFormat.Rtf
document.Save("output.rtf", SaveFormat.Rtf);
Explore XPS Conversion Options with .NET
What is XPS File Format?
XPS, short for XML Paper Specification, is a file format created by Microsoft to represent fixed-layout documents. XPS files contain the content and print settings of a document, making them suitable for preserving the layout and appearance of a document across different devices and platforms.
The XPS format is based on XML (eXtensible Markup Language), a widely used markup language for structured data representation. XPS files encapsulate document content, such as text, images, vector graphics, and annotations, in a structured XML format. This enables easy interpretation and rendering of the document’s visual elements.
XPS files are conceptually similar to PDF (Portable Document Format) files in that they both aim to provide a reliable way to present and share documents while preserving their formatting and layout. However, PDF files have gained broader support across different software applications and hardware devices, making them more widely accepted and compatible.
To view and work with XPS files, Microsoft provides an XPS Viewer as part of the Windows operating system. Various third-party applications and tools also offer support for opening, creating, and converting XPS files. However, compared to PDF, the range of software and hardware supporting the XPS format may be more limited.
What is RTF File Format?
The RTF (Rich Text Format) file format is a versatile and widely supported file format for storing text documents with formatting. It was developed by Microsoft in the late 1980s as a cross-platform format that could be easily exchanged between different word processing applications.
RTF files are typically saved with the .rtf file extension and can be opened and edited by various text editors and word processing software, including Microsoft Word, Google Docs, and LibreOffice. The format allows for the inclusion of various formatting elements, such as font styles, sizes, colors, paragraphs, tables, and images.
One of the key advantages of RTF is its platform independence, which means that an RTF file created on one operating system can be opened and rendered correctly on another without losing formatting. This makes it a preferred choice for document exchange and collaboration.
RTF files use a plain-text formatting syntax, which means that the files are human-readable and can be modified with a text editor if needed. However, RTF files can be quite large in size compared to other formats like plain text or Markdown, as they store formatting information explicitly.
While RTF is primarily used for text documents, it can also support the embedding of other types of files, such as images and objects, within the document. This allows for the creation of more complex and visually appealing documents.