Markdown naar XPS converteren in C#

In deze stapsgewijze zelfstudie leert u hoe u Markdown naar XPS converteert in C#. We converteren eerst Markdown naar HTML in C# en gebruiken vervolgens C#-code om HTML te converteren naar de bestandsindeling XPS.

Stappen om Markdown naar XPS te converteren in C#

  1. Stel Aspose.HTML for .NET pakket in van NuGet.org
  2. Voeg de vier vereiste naamruimten van de Aspose.HTML API toe
  3. Gebruik de SetLicense-methode om de API-licentie toe te passen
  4. Laad Markdown-bestand (MD) met Converter class in HTMLDocument object
  5. Sla de uitvoer op als een HTML-bestand
  6. Laad HTML-uitvoerbestand in HTMLDocument-object
  7. Specificeer XPS-opties met XpsRenderingOptions class
  8. Maak een instantie van XpsDevice class om XPS-uitvoer weer te geven
  9. Geef het geladen HTML-bestand weer als XPS-bestandsindeling

De conversie van Markdown (MD)-bestandsindeling naar XPS gebeurt in twee stappen met behulp van een enkele Aspose.HTML voor .NET API. In de eerste stap wordt het MD-bestand geconverteerd naar HTML en vervolgens wordt HTML geconverteerd naar het XPS-bestandsformaat. Het conversieproces is heel eenvoudig en gemakkelijk.

Code om Markdown naar XPS in C# te converteren

using System;
//Add reference to Aspose.HTML for .NET API
//Use following namespaces to convert markdown to HTML to XPS
using Aspose.Html;
using Aspose.Html.Converters;
using Aspose.Html.Rendering.Xps;
using Aspose.Html.Drawing;
namespace ConvertMDtoHTMLtoXPS
{
class Program
{
static void Main(string[] args)
{
//Set Aspose license before converting markdown to HTML to XPS
//using Aspose.HTML for .NET
Aspose.Html.License AsposeHtmlLicense = new Aspose.Html.License();
AsposeHtmlLicense.SetLicense(@"c:\asposelicense\license.lic");
//Create HTMLDocument object and input markdown file
HTMLDocument MarkdownToHTMLDoc = Converter.ConvertMarkdown("InputMarkdownFile.md");
//Save markdown (.md) file to HTML format
MarkdownToHTMLDoc.Save("MarkdownConvertedToHTML.html");
//Load the MD to HTML converted file to an HTMLDocument object
HTMLDocument HTMLToXPSDoc = new HTMLDocument("MarkdownConvertedToHTML.html");
//Setup required XPS output options like page size
XpsRenderingOptions OutputXPSOptions = new XpsRenderingOptions();
OutputXPSOptions.PageSetup.AnyPage.Size = new Size(Unit.FromInches(8.5), Unit.FromInches(11));
//Create an XPS Device which will render HTML to XPS
XpsDevice XPSDevice = new XpsDevice(OutputXPSOptions, "HTMLToXPS.xps");
//Render input HTML file to XPS Device to save as XPS file format
HTMLToXPSDoc.RenderTo(XPSDevice);
}
}
}

De bovenstaande code laat zien dat voor beide conversies een HTMLDocument-object is vereist. In de Markdown to HTML conversion gebruiken we de Converter-klasse. Terwijl we voor de HTML naar XPS-conversie een XpsDevice-object gebruiken dat helpt om de HTML als XPS-document weer te geven. Het bovenstaande C#-codevoorbeeld werkt prima met elk .NET-platform en -hulpprogramma’s.

 Nederlands