Convert HTML to XPS | C# Examples
XPS is a document storage and viewing format developed by Microsoft. It has a set of advantages that support security features, such as digital signatures to provide greater document security and more. HTML to XPS conversion is often required to establish limited access to document editing or copying. XPS file format provides access rights management and gives high-quality printable documents. XPS files can be used to share documents, and you can be sure that what you see on the page is the same as what other people see when using the XPS Viewer.
Using Converter.ConvertHTML() methods is the most common way to convert HTML code into various formats. With Aspose.HTML, you can convert HTML to XPS format programmatically with full control over a wide range of conversion parameters. In this article, you find information on how to convert HTML to XPS using ConvertHTML() methods of the Converter class, and how to apply XpsSaveOptions and ICreateStreamProvider parameters.
Online HTML Converter
You can check the Aspose.HTML API functionality and convert HTML in real-time. Please load HTML from the local file system, select the output format and run the example. In the example, the save options are set by default. You will immediately receive the result as a separate file.
If you want to convert HTML to XPS programmatically, please see the following C# code examples.
HTML to XPS by a single line of code
The static methods of the Converter class are primarily used as the easiest way to convert an HTML code into various formats. You can convert HTML to XPS in your C# application literally with a single line of code!
1// Invoke the ConvertHTML() method to convert the HTML code to XPS
2Converter.ConvertHTML(@"<h1>Convert HTML to XPS!</h1>", ".", new XpsSaveOptions(), Path.Combine(OutputDir, "convert-with-single-line.xps"));
Convert HTML to XPS
Converting a file to another format using the ConvertHTML() method is a sequence of operations among which document loading and saving:
- Load an HTML file using the HTMLDocument class.
- Create a new XpsSaveOptions object.
- Use the ConvertHTML() method of the Converter class to save HTML as a XPS file. You need to pass the HTMLDocument, XpsSaveOptions, and output file path to the ConvertHTML() method to convert HTML to XPS.
Please take a look over the following C# code snippet which shows the process of converting HTML to XPS using Aspose.HTML for .NET.
1// Prepare a path to a source HTML file
2string documentPath = Path.Combine(DataDir, "canvas.html");
3
4// Prepare a path to save the converted file
5string savePath = Path.Combine(OutputDir, "canvas-output.xps");
6
7// Initialize an HTML document from the file
8using var document = new HTMLDocument(documentPath);
9
10// Initialize XpsSaveOptions
11var options = new XpsSaveOptions();
12
13// Convert HTML to XPS
14Converter.ConvertHTML(document, options, savePath);
Save Options
Aspose.HTML allows converting HTML to XPS using default or custom save options. XpsSaveOptions usage enables you to customize the rendering process. You can specify the page size, margins, Css, etc.
Property | Description |
---|---|
PageSetup | This property gets a page setup object and uses it for configuration output page-set. |
Css | Gets a CssOptions object which is used for configuration of CSS properties processing. |
BackgroundColor | This property sets the color that will fill the background of every page. By default, this property is Transparent. |
HorizontalResolution | Sets horizontal resolution for output images in pixels per inch. The default value is 300 dpi. |
VerticalResolution | Sets vertical resolution for output images in pixels per inch. The default value is 300 dpi. |
To learn more about XpsSaveOptions, please read the Fine-Tuning Converters article.
Convert HTML to XPS using XpsSaveOptions
To convert HTML to XPS with XpsSaveOptions specifying, you should follow a few steps:
- Load an HTML file using one of the HTMLDocument() constructors of the HTMLDocument class.
- Create a new XpsSaveOptions object.
- Use the ConvertHTML() method of the Converter class to save HTML as a PDF file. You need to pass the HTMLDocument, XpsSaveOptions, and output file path to the ConvertHTML() method to convert HTML to XPS.
The following example shows how to use XpsSaveOptions and create an XPS file with custom page-size and background color:
1string documentPath = Path.Combine(OutputDir, "save-options.html");
2string savePath = Path.Combine(OutputDir, "save-options-output.xps");
3
4// Prepare HTML code and save it to a file
5var code = "<h1> XpsSaveOptions Class</h1>\r\n" +
6 "<p>Using XpsSaveOptions Class, you can programmatically apply a wide range of conversion parameters such as BackgroundColor, PageSetup, etc.</p>\r\n";
7
8File.WriteAllText(documentPath, code);
9
10// Initialize an HTML Document from the html file
11using var document = new HTMLDocument(documentPath);
12
13// Set up the page-size, margins and change the background color to AntiqueWhite
14var options = new XpsSaveOptions()
15{
16 BackgroundColor = System.Drawing.Color.AntiqueWhite
17};
18options.PageSetup.AnyPage = new Page(new Aspose.Html.Drawing.Size(Length.FromInches(4.9f), Length.FromInches(3.5f)), new Margin(30, 20, 10, 10));
19
20// Convert HTML to XPS
21Converter.ConvertHTML(document, options, savePath);
The
XpsSaveOptions() constructor initializes an instance of the XpsSaveOptions class that is passed to ConvertHTML() method. The ConvertHTML() method takes the document
, options
, output file path savePath
and performs the conversion operation. The XpsSaveOptions class provides numerous properties that give you full control over a wide range of parameters and improve the process of converting HTML to XPS format.
In the above example, we use:
BackgroundColor
property that sets the color that will fill the background. The default BackgroundColor is Transparent;PageSetup
property that specifies the page size and margins.
Output Stream Providers
If it is required to save files in the remote storage (e.g., cloud, database, etc.) you can implement ICreateStreamProvider interface to have manual control over the file creating process. This interface is designed as a callback object to create a stream at the beginning of the document/page (depending on the output format) and release the early created stream after rendering the document/page.
Aspose.HTML for .NET provides various types of output formats for rendering operations. Some of these formats produce a single output file (for instance PDF, XPS), others create multiple files (Image formats JPG, PNG, etc.).
The example below shows how to implement and use your own MemoryStreamProvider in the application:
1class MemoryStreamProvider : Aspose.Html.IO.ICreateStreamProvider
2{
3 // List of MemoryStream objects created during the document rendering
4 public List<MemoryStream> Streams { get; } = new List<MemoryStream>();
5
6 public Stream GetStream(string name, string extension)
7 {
8 // This method is called when only one output stream is required, for instance for XPS, PDF or TIFF formats
9 MemoryStream result = new MemoryStream();
10 Streams.Add(result);
11 return result;
12 }
13
14 public Stream GetStream(string name, string extension, int page)
15 {
16 // This method is called when the creation of multiple output streams are required. For instance, during the rendering HTML to list of image files (JPG, PNG, etc.)
17 MemoryStream result = new MemoryStream();
18 Streams.Add(result);
19 return result;
20 }
21
22 public void ReleaseStream(Stream stream)
23 {
24 // Here you can release the stream filled with data and, for instance, flush it to the hard-drive
25 }
26
27 public void Dispose()
28 {
29 // Releasing resources
30 foreach (var stream in Streams)
31 stream.Dispose();
32 }
33}
1// Create an instance of MemoryStreamProvider
2using var streamProvider = new MemoryStreamProvider();
3
4// Initialize an HTML document
5using var document = new HTMLDocument(@"<h1>Convert HTML to XPS File Format!</h1>", ".");
6
7// Convert HTML to XPS using the MemoryStreamProvider
8Converter.ConvertHTML(document, new XpsSaveOptions(), streamProvider);
9
10// Get access to the memory stream that contains the result data
11var memory = streamProvider.Streams.First();
12memory.Seek(0, SeekOrigin.Begin);
13
14// Flush the result data to the output file
15using (FileStream fs = File.Create(Path.Combine(OutputDir, "stream-provider.xps")))
16{
17 memory.CopyTo(fs);
18}
You can download the complete examples and data files from GitHub.
Aspose.HTML offers a free online HTML to XPS Converter that converts HTML to XPS with high quality, easy and fast. Just upload, convert your files and get results in a few seconds!