C#でMarkdownをXPSに変換する方法

このステップバイステップのチュートリアルでは、C#でMarkdownをXPSに変換する方法を学習します。最初にMarkdownをC#でHTMLに変換し、次にC#コードを使用してHTMLをXPSファイル形式に変換します。

C#でMarkdownをXPSに変換する手順

  1. NuGet.orgからAspose.HTML for .NETパッケージをセットアップします
  2. Aspose.HTMLAPIに必要な4つの名前空間を含めます
  3. SetLicenseメソッドを使用してAPIライセンスを適用します
  4. Converter classを使用してMarkdown(MD)ファイルをHTMLDocument objectにロードします
  5. 出力をHTMLファイルとして保存します
  6. 出力HTMLファイルをHTMLDocumentオブジェクトにロードします
  7. XpsRenderingOptions classを使用してXPSオプションを指定します
  8. XpsDevice classのインスタンスを作成して、XPS出力をレンダリングします
  9. ロードされたHTMLファイルをXPSファイル形式でレンダリングします

Markdown(MD)ファイル形式からXPSへの変換は、単一のAspose.HTML for.NETAPIを使用して2つのステップで実行されます。最初のステップでは、MDファイルがHTMLに変換され、次にHTMLがXPSファイル形式に変換されます。変換プロセスは非常にシンプルで簡単です。

C#でマークダウンをXPSに変換するコード

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

上記のコードは、両方の変換にHTMLDocumentオブジェクトが必要であることを示しています。 HTML conversionへのマークダウンでは、Converterクラスを使用しています。一方、HTMLからXPSへの変換には、HTMLをXPSドキュメントとしてレンダリングするのに役立つXpsDeviceオブジェクトを使用しています。上記のC#コードサンプルは、どの.NETプラットフォームおよびツールでも正常に機能します。

 日本語