このステップバイステップのチュートリアルでは、C#でMarkdownをXPSに変換する方法を学習します。最初にMarkdownをC#でHTMLに変換し、次にC#コードを使用してHTMLをXPSファイル形式に変換します。
C#でMarkdownをXPSに変換する手順
- NuGet.orgからAspose.HTML for .NETパッケージをセットアップします
- Aspose.HTMLAPIに必要な4つの名前空間を含めます
- SetLicenseメソッドを使用してAPIライセンスを適用します
- Converter classを使用してMarkdown(MD)ファイルをHTMLDocument objectにロードします
- 出力をHTMLファイルとして保存します
- 出力HTMLファイルをHTMLDocumentオブジェクトにロードします
- XpsRenderingOptions classを使用してXPSオプションを指定します
- XpsDevice classのインスタンスを作成して、XPS出力をレンダリングします
- ロードされた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プラットフォームおよびツールでも正常に機能します。