Convertir HTML a XPS | Ejemplos de C#

XPS es un formato de visualización y almacenamiento de documentos desarrollado por Microsoft. Tiene un conjunto de ventajas que respaldan funciones de seguridad, como firmas digitales para brindar mayor seguridad a los documentos y más. A menudo se requiere la conversión de HTML a XPS para establecer un acceso limitado a la edición o copia de documentos. El formato de archivo XPS proporciona gestión de derechos de acceso y proporciona documentos imprimibles de alta calidad. Los archivos XPS se pueden usar para compartir documentos y puede estar seguro de que lo que ve en la página es lo mismo que ven otras personas cuando usan XPS Viewer.

Usar los métodos Converter.ConvertHTML() es la forma más común de convertir código HTML a varios formatos. Con Aspose.HTML for .NET, puede convertir HTML a formato XPS mediante programación con control total sobre una amplia gama de parámetros de conversión. En este artículo, encontrará información sobre cómo convertir HTML a XPS usando los métodos ConvertHTML() de la clase Converter y cómo aplicar los parámetros XpsSaveOptions y ICreateStreamProvider.

Convertidor HTML en línea

Puede comprobar la funcionalidad de la API Aspose.HTML y convertir HTML en tiempo real. Cargue HTML desde el sistema de archivos local, seleccione el formato de salida y ejecute el ejemplo. En el ejemplo, las opciones de guardar están configuradas de forma predeterminada. Recibirá inmediatamente el resultado en un archivo separado.

                
            

Si desea convertir HTML a XPS mediante programación, consulte los siguientes ejemplos de código C#.

HTML a XPS mediante una sola línea de código

Los métodos estáticos de la clase Converter se utilizan principalmente como la forma más sencilla de convertir un código HTML a varios formatos. ¡Puedes convertir HTML a XPS en tu aplicación C# literalmente con una sola línea de código!

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"));

Convertir HTML a XPS

Convertir un archivo a otro formato usando el método ConvertHTML() es una secuencia de operaciones entre las que se encuentran cargar y guardar documentos:

  1. Cargue un archivo HTML usando la clase HTMLDocument.
  2. Cree un nuevo objeto XpsSaveOptions.
  3. Utilice el método ConvertHTML() de la clase Converter para guardar HTML como un archivo XPS. Debe pasar HTMLDocument, XpsSaveOptions y la ruta del archivo de salida al método ConvertHTML() para convertir HTML a XPS.

Eche un vistazo al siguiente fragmento de código C# que muestra el proceso de conversión de HTML a XPS utilizando 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);

Opciones de guardado

Aspose.HTML permite convertir HTML a XPS utilizando opciones de guardado predeterminadas o personalizadas. El uso de XpsSaveOptions le permite personalizar el proceso de renderizado. Puede especificar el tamaño de la página, márgenes, CSS, etc.

PropertyDescription
PageSetupThis property gets a page setup object and uses it for configuration output page-set.
CssGets a CssOptions object which is used for configuration of CSS properties processing.
BackgroundColorThis property sets the color that will fill the background of every page. By default, this property is Transparent.
HorizontalResolutionSets horizontal resolution for output images in pixels per inch. The default value is 300 dpi.
VerticalResolutionSets vertical resolution for output images in pixels per inch. The default value is 300 dpi.

Para obtener más información sobre XpsSaveOptions, lea el artículo Convertidores de ajuste fino.

Convierta HTML a XPS usando XpsSaveOptions

Para convertir HTML a XPS con la especificación XpsSaveOptions, debe seguir algunos pasos:

  1. Cargue un archivo HTML usando uno de los constructores HTMLDocument() de la clase HTMLDocument.
  2. Cree un nuevo objeto XpsSaveOptions.
  3. Utilice el método ConvertHTML() de la clase Converter para guardar HTML como un archivo PDF. Debe pasar HTMLDocument, XpsSaveOptions y la ruta del archivo de salida al método ConvertHTML() para convertir HTML a XPS.

El siguiente ejemplo muestra cómo utilizar XpsSaveOptions y crear un archivo XPS con un tamaño de página y un color de fondo personalizados:

 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);

El constructor XpsSaveOptions() inicializa una instancia de la clase XpsSaveOptions que se pasa al método ConvertHTML(). El método ConvertHTML() toma el document, las options, la ruta del archivo de salida savePath y realiza la operación de conversión. La clase XpsSaveOptions proporciona numerosas propiedades que le brindan control total sobre una amplia gama de parámetros y mejoran el proceso de conversión de HTML a formato XPS.

En el ejemplo anterior, usamos:

Proveedores de flujo de salida – Output Stream Providers

Si es necesario guardar archivos en el almacenamiento remoto (por ejemplo, nube, base de datos, etc.), puede implementar la interfaz ICreateStreamProvider para tener control manual sobre el proceso de creación de archivos. Esta interfaz está diseñada como un objeto de devolución de llamada para crear una secuencia al comienzo del documento/página (según el formato de salida) y liberar la secuencia creada inicialmente después de renderizar el documento/página.

Aspose.HTML for .NET proporciona varios tipos de formatos de salida para operaciones de renderizado. Algunos de estos formatos producen un único archivo de salida (por ejemplo, PDF, XPS), otros crean varios archivos (formatos de imagen JPG, PNG, etc.).

El siguiente ejemplo muestra cómo implementar y utilizar su propio MemoryStreamProvider en la aplicación:

 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}

Puede descargar los ejemplos completos y los archivos de datos desde GitHub.

Aspose.HTML ofrece un Convertidor de HTML a XPS en línea gratuito que convierte HTML a XPS con alta calidad, fácil y rápido. ¡Simplemente cargue, convierta sus archivos y obtenga resultados en unos segundos!

Texto “Convertidor de HTML a XPS”

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.