How to convert OXPS to PDF?
Syncfusion Essential® PDF is a .NET PDF library used to create, read, and edit PDF documents. Using this library, you can convert OXPS to a PDF document using C# and VB.NET.
Steps to convert OXPS to PDF programmatically:
- Create a new C# Windows Forms application project.
- Install the Syncfusion.Pdf.WinForms NuGet package as a reference to your .NET Framework application from NuGet.org.
- Include the following namespaces in the Form1.cs file.
C#
using Syncfusion.Pdf; using Syncfusion.XPS;
VB.NET
Imports Syncfusion.Pdf Imports Syncfusion.XPS
- Use the following code snippet in the click event of button to convert OXPS to PDF document.
C#
//Create converter class XPSToPdfConverter converter = new XPSToPdfConverter(); //Convert the OXPS to PDF PdfDocument document = converter.Convert("input.oxps"); //Save and close the document document.Save("OXPSToPDF.pdf"); document.Close(true);
VB.NET
'Create converter class Dim converter = New XPSToPdfConverter() 'Convert the OXPS to PDF Dim document = converter.Convert("input.oxps") 'Save And close the document document.Save("OXPSToPDF.pdf") document.Close(True)
A complete working sample can be downloaded from OXPS_To_PDF.zip.
By executing the program, you will get the PDF document as follows.
Take a moment to peruse the documentation for working with document conversions, where you will find other options like the conversion of Word to PDF, Excel to PDF, RTF to PDF, TIFF to PDF, and HTML to PDF with code examples.
Refer here to explore the rich set of Syncfusion Essential® PDF features.
An online sample link to convert XPS to PDF.
Note:
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from a trial setup or from the NuGet feed, include a license key in your projects. Refer to the link to learn about generating and registering the Syncfusion® license key in your application to use the components without a trial message.
Conclusion
I hope you enjoyed learning about how to convert OXPS to PDF.
You can refer to our WinForms PDF’s feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms PDF documentation to understand how to present and manipulate data.
For current customers, you can check out our WinForms 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 WinForms PDF and other WinForms components.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!