Convertir MHTML a XPS – C#

A menudo se requiere la conversión de MHTML a XPS para aprovechar el formato XPS para tareas específicas. Un archivo XPS representa archivos de diseño de página que se basan en especificaciones de papel XML, creadas por Microsoft.

En este artículo, encontrará información sobre cómo convertir MHTML a XPS usando los métodos ConvertMHTML() de la clase Converter y cómo aplicar XpsSaveOptions y ICreateStreamProvider parámetros.

Convertidor MHTML en línea

Puede comprobar la funcionalidad de la API Aspose.HTML y convertir MHTML en tiempo real. Cargue un archivo MHTML 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 MHTML al formato XPS mediante programación, consulte los siguientes ejemplos de código C#.

MHTML a XPS por dos líneas 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 MHTML a varios formatos. Por ejemplo, puede convertir MHTML a XPS en su aplicación C# literalmente con dos líneas de código.

1// Open an existing MHTML file for reading
2using var stream = File.OpenRead(DataDir + "sample.mht");
3
4// Invoke the ConvertMHTML() method to convert the MHTML code to XPS
5Converter.ConvertMHTML(stream, new XpsSaveOptions(), Path.Combine(OutputDir, "convert-by-two-lines.xps"));

Convertir MHTML a XPS

Usar los métodos Converter.ConvertMHTML es la forma más común de convertir código MHTML a varios formatos. Con Aspose.HTML, puede convertir MHTML a formato XPS mediante programación con control total sobre una amplia gama de parámetros de conversión.

El siguiente fragmento de código C# muestra cómo convertir MHTML a XPS usando Aspose.HTML for .NET.

  1. Abra un archivo MHTML existente. En el ejemplo, utilizamos el método OpenRead() de la clase System.IO.FileStream para abrir y leer archivos del sistema de archivos en la ruta especificada.
  2. Cree una instancia de la clase XpsSaveOptions.
  3. Utilice el método ConvertMHTML() de la clase Converter para guardar MHTML como un archivo XPS. Debe pasar la secuencia del archivo MHTML, XpsSaveOptions y la ruta del archivo de salida al método ConvertMHTML() para la conversión de MHTML a XPS.
 1// Open an existing MHTML file for reading
 2using var stream = File.OpenRead(DataDir + "sample.mht");
 3
 4// Prepare a path for converted file saving 
 5string savePath = Path.Combine(OutputDir, "sample-output.xps");
 6
 7// Create an instance of XpsSaveOptions
 8var options = new XpsSaveOptions();
 9
10// Call the ConvertMHTML() method to convert MHTML to XPS
11Converter.ConvertMHTML(stream, options, savePath);

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

Opciones de guardado

Aspose.HTML permite convertir MHTML a XPS usando opciones de guardado predeterminadas o personalizadas. El uso de XpsSaveOptions le permite personalizar el proceso de renderizado; puede especificar el tamaño de página, márgenes, color de fondo, resoluciones, 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 MHTML a XPS usando XpsSaveOptions

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

  1. Abra un archivo MHTML existente.
  2. Cree un nuevo objeto XpsSaveOptions y especifique las opciones de guardado.
  3. Utilice el método ConvertMHTML() para guardar MHTML como un archivo XPS. Debe pasar la secuencia del archivo MHTML, XpsSaveOptions y la ruta del archivo de salida al método ConvertMHTML() para la conversión de MHTML a XPS.

El siguiente ejemplo muestra cómo usar XpsSaveOptions y crear un archivo XPS con opciones de guardado personalizadas:

 1// Open an existing MHTML file for reading
 2using var stream = File.OpenRead(DataDir + "sample.mht");
 3
 4// Prepare a path for converted file saving 
 5string savePath = Path.Combine(OutputDir, "sample-options.xps");
 6
 7// Create an instance of XpsSaveOptions. Set up the page-size and change the background color to AliceBlue 
 8var options = new XpsSaveOptions();
 9options.PageSetup.AnyPage = new Page(new Aspose.Html.Drawing.Size(Length.FromInches(8.3f), Length.FromInches(5.8f)));
10options.BackgroundColor = System.Drawing.Color.AliceBlue;
11
12// Call the ConvertMHTML() method to convert MHTML to XPS
13Converter.ConvertMHTML(stream, options, savePath);

En el ejemplo, utilizamos el método OpenRead() de la clase System.IO.FileStream para abrir y leer archivos fuente del sistema de archivos en la ruta especificada. El constructor XpsSaveOptions() inicializa una instancia de la clase XpsSaveOptions que se pasa al método ConvertMHTML(). El método ConvertMHTML() toma la stream, 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 MHTML 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// Open an existing MHTML file for reading
 5using var stream = File.OpenRead(DataDir + "sample.mht");
 6
 7// Prepare a path for converted file saving
 8string savePath = Path.Combine(OutputDir, "stream-provider.xps");
 9
10// Convert MHTML to XPS by using the MemoryStreamProvider class
11Converter.ConvertMHTML(stream, new XpsSaveOptions(), streamProvider);
12
13// Get access to the memory stream that contains the result data
14var memory = streamProvider.Streams.First();
15memory.Seek(0, SeekOrigin.Begin);
16
17// Flush the result data to the output file
18using (FileStream fs = File.Create(savePath))
19{
20    memory.CopyTo(fs);
21}

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

Texto “Convertidor de MHTML a XPS”

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.