Convert XPS to SVGZ Files Online using App
- Upload XPS files to convert
- Wait for few seconds or more depending on XPS size
- Keep an eye on uploading status bar
- Click the “Convert” button
- XPS will be converted into SVGZ document
- Download the converted SVGZ file
Convert XPS to SVGZ via .NET Automation API
- Open XPS file using Document class
- Initialize JpegDevice class object and render XPS to JPEG by using Process method
- Load JPEG file by using Image class
- Save the document to SVGZ format using Save method
Convert XPS to SVGZ via C# .NET
// supports PDF, CGM, EPUB, TeX, PCL, PS, XPS, MD, MHTML, XSLFO, HTML file formats | |
// load PDF with an instance of Document | |
var document = new Document("input.pdf"); | |
// create an object of jpegDevice | |
var renderer = new JpegDevice(); | |
// convert a particular page and save the image in JPEG format | |
renderer.Process(document.Pages[1], "output.jpeg"); | |
// load JPEG file | |
var image = Image.Load("output.jpeg"); | |
// supports Dicom, Jpeg2000, Apng, Psd, Dxf, Wmf, Emz, Wmz, Tga, Svgz file formats | |
// save JPEG to PSD file format | |
image.Save("output.psd", new PsdOptions()); |
Few more cases for saving XPS to SVGZ with other features like Convert XPS File to SVGZ in a Single File via C#, Convert XPS to SVGZ With Watermark via C#, Convert & Rotate XPS File to SVGZ via C#.
// supports PDF, CGM, EPUB, TeX, PCL, PS, XPS, MD, MHTML, XSLFO, HTML file formats | |
// Open PDF document | |
Document pdfDocument = new Document("input.pdf"); | |
// Create Resolution object | |
Resolution resolution = new Resolution(300); | |
// Create TiffSettings object | |
TiffSettings tiffSettings = new TiffSettings | |
{ | |
Compression = CompressionType.None, | |
Depth = ColorDepth.Default, | |
Shape = ShapeType.Landscape, | |
SkipBlankPages = false | |
}; | |
// Create TIFF device | |
TiffDevice tiffDevice = new TiffDevice(resolution, tiffSettings); | |
// Convert a particular page and save the image to stream | |
tiffDevice.Process("output.tif"); | |
// load TIFF file | |
var image = Image.Load("output.tif"); | |
// supports Dicom, Jpeg2000, Apng, Psd, Dxf, Wmf, Emz, Wmz, Tga, Svgz file formats | |
// save TIFF to PSD file format | |
image.Save("output.psd", new PsdOptions()); |
// supports PDF, CGM, EPUB, TeX, PCL, PS, XPS, MD, MHTML, XSLFO, HTML file formats | |
// load PDF with an instance of Document | |
var document = new Document("input.pdf"); | |
// create an object of jpegDevice | |
var renderer = new JpegDevice(); | |
// convert a particular page and save the image in JPEG format | |
renderer.Process(document.Pages[1], "output.jpeg"); | |
// load an existing JPEG image | |
Image image = Image.Load("output.jpeg"); | |
// declare a String object with Watermark Text | |
string theString = "45 Degree Rotated Text"; | |
// create and initialize an instance of Graphics class and Initialize an object of SizeF to store image Size | |
Graphics graphics = new Graphics(image); | |
SizeF sz = graphics.Image.Size; | |
// create an instance of Font, initialize it with Font Face, Size and Style | |
Font font = new Font("Times New Roman", 20, FontStyle.Bold); | |
// create an instance of SolidBrush and set its various properties | |
SolidBrush brush = new SolidBrush(); | |
brush.Color = Color.Red; | |
brush.Opacity = 0; | |
// initialize an object of StringFormat class and set its various properties | |
StringFormat format = new StringFormat(); | |
format.Alignment = StringAlignment.Center; | |
format.FormatFlags = StringFormatFlags.MeasureTrailingSpaces; | |
// create an object of Matrix class for transformation | |
Matrix matrix = new Matrix(); | |
// first a translation then a rotation | |
matrix.Translate(sz.Width / 2, sz.Height / 2); | |
matrix.Rotate(-45.0f); | |
// set the Transformation through Matrix | |
graphics.Transform = matrix; | |
// draw the string on Image Save output to disk | |
graphics.DrawString(theString, font, brush, 0, 0, format); | |
// supports Dicom, Jpeg2000, Apng, Psd, Dxf, Wmf, Emz, Wmz, Tga, Svgz file formats | |
// save JPEG to PSD file format with watermark in it | |
image.Save("output.psd", new PsdOptions()); |
// supports PDF, CGM, EPUB, TeX, PCL, PS, XPS, MD, MHTML, XSLFO, HTML file formats | |
// load PDF with an instance of Document | |
var document = new Document("input.pdf"); | |
// create an object of jpegDevice | |
var renderer = new JpegDevice(); | |
// convert a particular page and save the image in JPEG format | |
renderer.Process(document.Pages[1], "output.jpeg"); | |
// load JPEG file | |
var image = Image.Load("output.jpeg"); | |
// rotate the image | |
image.RotateFlip(RotateFlipType.Rotate270FlipNone); | |
// supports Dicom, Jpeg2000, Apng, Psd, Dxf, Wmf, Emz, Wmz, Tga, Svgz file formats | |
// save JPEG to PSD file format | |
image.Save("output.psd", new PsdOptions()); |
Develop XPS File Conversion Application using .NET
Need to develop .NET based software application to easily save and export XPS files to SVGZ document ? With
Aspose.Total for .NET
, any .NET developer can integrate the above API code to program the conversion application across variety of formats including Microsoft Word, Excel, Powerpoint, PDF, Email files, Images and other formats. Powerful .NET library for document conversion, supports many popular formats including XPS format. Exporting documents to other formats, programmers can use Aspose.Total for .NET child APIs inlcluding
Aspose.Words for .NET
,
Aspose.Cells for .NET
,
Aspose.Slides for .NET
,
Aspose.PDF for .NET
,
Aspose.Imaging for .NET
and more.
XPS Conversion Library for .NET
There are three alternative options to install Aspose.Total for .NET onto your system. Please choose one that resembles your needs and follow the step-by-step instructions:
- Install a NuGet Package . See Documentation
- Install the library using Package Manager Console as of its child API selection within Visual Studio IDE like Aspose.Wrods , Aspose.Cells , Aspose.PDF etc
- Install the library manually using Windows Installer
Saving XPS to SVGZ App Requirements
Our product is fully cross-platform and supports all major .NET implementations following ‘.NET Standard 2.0’ specification:
- Microsoft .NET Framework, starting from the earliest 2.0 version, and ending with the latest ‘.NET Framework 4.8’
- .NET Core, starting from the earliest 2.0, and ending with the latest ‘.NET 6’
- Mono >= 2.6.7
As .NET code doesn’t rely on the underlying hardware or operating system, but only on a Virtual Machine, so you are free to develop any kind of software for Windows, macOS, Android, iOS and Linux. Just make sure you have installed the corresponding version of .NET Framework, .NET Core, Windows Azure, Mono or Xamarin.
We recommend using Microsoft Visual Studio, Xamarin, and MonoDevelop IDE to create C#, F#, VB.NET applications.
FAQs
- Can I use above .NET code in my application?Yes, you are welcome to download this code. One can easily develop a professional solution to export and save XPS to SVGZ file using .NET. Use Aspose XPS to SVGZ conversion API to develop high-level, platform independent software in .NET.
- Is this document exporting App work only on Windows?You have the flexibility to initiate exporting document from XPS to SVGZ from any device, irrespective of the operating system it runs on, whether it be Windows, Linux, Mac OS, or Android. All that's required is a contemporary web browser and an active internet connection.
- Is it safe to use the online app to convert multiple XPS documents?Of course! The output files generated through our service will be securely and automatically removed from our servers within a 24-hour timeframe. As a result, the download links associated with these files will cease to be functional after this period.
- What browser should to use App?You can use any modern web browser like Google Chrome, Firefox, Opera, or Safari for online XPS document conversion.
- How can I export multiple XPS files?Start by uploading one or more files you want to convert. You can either drag and drop your XPS files or simply click inside the white area. Afterward, click the 'Convert' button, and our online conversion app will quickly process the uploaded files.
- How long does it take to convert the XPS files?This conversion application operates quickly, It may take a few seconds or more depending on the document size to upload and save them to required format.