How to convert XPS to PDF document in WinForms?
The Syncfusion® PDF library is a .NET PDF library used to create, read, and edit PDF documents programmatically without Adobe dependencies. Using this library, you can convert XPS document to PDF in ASP.NET core.
Steps to convert XPS to PDF document programmatically:
- Create a new C# console application project.
- Install the Syncfusion.XpsToPdfConverter.Net.Core NuGet package as a reference to your .NET Framework application from NuGet.org.
- Include the following namespaces in Program.cs file.
C#
using Syncfusion.Pdf; using Syncfusion.XPS;
- The following code explains how to convert XPS to PDF. Convert the XPSToPDF document using the Convert method available in XPSToPDFConverter class .
C#
//Initialize XPS to PDF converter XPSToPdfConverter converter = new XPSToPdfConverter(); //Open the XPS file as stream FileStream fileStream = new FileStream(“Input.xps", FileMode.Open, FileAccess.ReadWrite); //Convert the XPS to PDF PdfDocument document = converter.Convert(fileStream); //Creating the stream object MemoryStream stream = new MemoryStream(); //Save the document into stream document.Save(stream); //If the position is not set to '0' then the PDF will be empty stream.Position = 0; //Close the documents document.Close(true); //Defining the ContentType for pdf file string contentType = "application/pdf"; //Define the file name string fileName = "Output.pdf"; //Creates a FileContentResult object by using the file contents, content type, and file name return File(stream, contentType, fileName);
A complete work sample for convert XPS document to PDF can be downloaded from XPSToPDFSample.Zip.
By executing the program, you will get the PDF document as follows.
Take a moment to peruse the documentation, where you will find other options like convert word to pdf, convert excel to pdf ,convert RTF to pdf and convert TIFF to pdf.
Click here to explore the rich set of Syncfusion Essential® PDF features.
See Also:
How to convert XPS to PDF document
How to convert RTF to PDF using C# and VB.NET
How to convert Excel to PDF in C#, VB.NET
How to convert TIFF to PDF in C# and VB.NET
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion® license key in your application to use the components without trail message.
Conclusion
I hope you enjoyed learning about how to convert XPS to PDF document.
You can refer to our WinForms PDF feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms PDF example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!