Convert SVG to XPS – Cloud SDKs and REST API

SVG to XPS

Converting between formats is often necessary for convenience and to leverage the strengths of different formats for specific tasks. XPS, developed by Microsoft, is a document storage and viewing format that uses a ZIP archive with the Open Packaging Conventions to contain the document’s files. XPS offers several advantages, including robust security features like digital signatures and enhancing document security and integrity.

Aspose.HTML Cloud v4.0 provides the simplest API to convert SVG documents to XPS format with high quality, easy and fast.

The article explains in a set of code examples how to convert an SVG document to XPS using Aspose.HTML Cloud client SDKs and REST API calls. SDKs are available in PHP, C++, Ruby, Python, C#, Java, Android, Swift, and Node.js. We will consider various scenarios of SVG to XPS conversion.

SDK Examples of SVG to XPS Conversion

A widespread use case for Aspose.HTML Cloud SDK functions is file processing and converting. Cloud SDK allows you to fetch an SVG document from a storage location by its name or from a local file on your drive, convert it to a specified format, and save it to storage or your local drive. The following code examples demonstrate how to convert SVG to XPS for different cases using available SDKs and cURL.

Example 1. Convert SVG file to XPS with default save options

SVG to XPS conversion occurs with the default conversion options: the resulting XPS document’s width and height correspond to A4, and all margins have zero value.

Example 2. Convert SVG to XPS with explicitly specified options

The example below demonstrates how to convert an SVG file from a local file system to XPS with explicitly specified options and save the result back to the local path.

More details about available conversion parameters for SVG files are in the SDK Conversion Options section.

Example 3. Convert SVG to XPS inside cloud storage

Aspose.HTML Cloud allows you to get an SVG file from your cloud storage and save conversion result back to cloud storage. The conversion occurs with default conversion options.

See Also