Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Use the Markdown Converter guides when your source is a Markdown file or Markdown text. Aspose.HTML for .NET converts Markdown to HTML directly and can render the converted HTML to PDF, XPS, DOCX, and image formats.
Markdown is a lightweight plain-text markup format. In Aspose.HTML for .NET, Markdown conversion starts with
Converter.ConvertMarkdown(), which creates an HTML document or HTML output. Conversions from Markdown to PDF, DOCX, XPS, or images use that HTML stage and then render the result with ConvertHTML() and target-specific save options.
Converter.ConvertMarkdown().Converter.ConvertHTML().The following example converts Markdown to JPG with ImageSaveOptions.
1// Convert Markdown to JPG in C# with custom settings
2
3// Prepare a path to a source Markdown file
4string sourcePath = Path.Combine(DataDir, "nature.md");
5
6// Prepare a path to save the converted file
7string savePath = Path.Combine(OutputDir, "nature-options.jpg");
8
9// Convert Markdown to HTML
10using HTMLDocument document = Converter.ConvertMarkdown(sourcePath);
11
12// Initialize ImageSaveOptions
13ImageSaveOptions options = new ImageSaveOptions(ImageFormat.Jpeg)
14{
15 UseAntialiasing = true,
16 HorizontalResolution = 200,
17 VerticalResolution = 200,
18 BackgroundColor = System.Drawing.Color.AliceBlue
19};
20options.PageSetup.AnyPage = new Page(new Aspose.Html.Drawing.Size(600, 950), new Margin(30, 20, 10, 10));
21
22// Convert HTML to JPG
23Converter.ConvertHTML(document, options, savePath);Use the online Markdown Converter for quick manual conversion. Use Aspose.HTML for .NET when Markdown conversion must run inside a C# application or content pipeline.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.