Convert XPS to PDF using C++ API
You can check the quality of Aspose.Page XPS to PDF conversion and view the results via free online XPS to PDF Converter
Aspose.Page C++ XPS to PDF converter allows to convert XPS document to PDF document on Windows and Linux.
It is necessary to do several steps in order to perform XPS to PDF conversion:
- Initialize an output stream for output PDF document.
- Initialize an input stream for input XPS document.
- Create an instance of XpsDocument from created earlier input stream.
- Specify TextCompression, ImageCompression, JpegQualityLevel, and other options of PdfSaveOptions.
- Create an instance of PdfDevice from created earlier output stream.
- Save XPS document as PDF with PDF save options.
Following code snippet shows how to convert XPS to PDF document in C++:
For complete examples and data files, please go to https://github.com/aspose-page/Aspose.Page-for-C
Let’s consider
PdfSaveOptions. Using this class we can assign different conversion parameters while converting XPS to PDF.
- JpegQualityLevel controls a quality of images in PDF document if ImageCompression algorithm is JPEG and can be from 0 to 100.
- ImageCompression algorithm encapsulated in PdfImageCompression Enumeration, may be Run Length Encoding (RLE), Flate, Lempel-Ziv-Welch (LZW) with base or optimized pedictor, JPEG , none (raw image bytes) and auto (the most appropriate compression for each image). Default is auto compression.
- TextCompression algorithm encapsulated in PdfTextCompression Enumeration, may be Run Length Encoding (RLE), Flate, Lempel-Ziv-Welch (LZW) and none. Default value in XPS to PDF conversion is Flate.
- EncryptionDetails encapsulated in PdfEncryptionDetails. It allows setting encryption algorithm, permisions, owner and user passwords for PDF document.
- PageNumbers represents an array of numbers of pages which will be saved to PDF.
- OutlineTreeExpansionLevel and OutlineTreeHeight controls view of document outline.
Evaluate XPS to PDF conversion online on our XPS to PDF Converter. You can convert several XPS files to PDF at once and dowload results in a few seconds.
You can download examples and data files from
GitHub.