Convert Markdown to Image – MD to JPG, PNG, BMP, GIF, TIFF
If you need to preview a Markdown file, you can convert it to image formats. Using the Aspose.HTML class library, you can easily convert Markdown into JPG, PNG, BMP, GIF or TIFF files with just a few lines of code!
This article provides information on how to convert Markdown to Image formats using the Aspose.HTML for .NET API. You will learn about the supported conversion scenarios and consider C# examples to illustrate them. Also, you can try an Online Markdown Converter to test the Aspose.HTML API functionality and convert Markdown on the fly.
Online Markdown Converter
You can convert Markdown to other formats with Aspose.HTML for .NET API in real time. Please load Markdown from the local file system, select the output format and run the example. The save options are set by default. You will immediately receive the conversion result as a separate file.
If you want to convert Markdown to Image formats programmatically, please see the following C# code examples.
Convert Markdown to JPG in C#
Conversions from Markdown to other formats go through the Markdown to HTML conversion stage. If your scenario is required rendering Markdown document, for instance, to the JPG image file format, the following example demonstrates how that is simple:
- Prepare a source Markdown document. In the example, we create a Markdown file from code.
- Prepare a path for converted file saving.
- Convert Markdown to HTML. Use the
ConvertMarkdown(
sourcePath
) method to save Markdown as an HTML document. - Use the ConvertHTML() method to render the intermediary HTML document to JPG image. You need to pass the HTMLDocument, ImageSaveOptions, and output file path to the ConvertHTML() method for converting HTML to JPG.
If your case is to create a Markdown document from a user string directly in your code and convert it to a JPG file, the following example could help you:
1// Prepare a path to a source Markdown file
2string sourcePath = Path.Combine(OutputDir, "document.md");
3
4// Prepare a simple Markdown example
5var code = "### Hello, World!" +
6 "\r\n" +
7 "[visit applications](https://products.aspose.app/html/family)";
8// Create a Markdown file
9File.WriteAllText(sourcePath, code);
10
11// Prepare a path to save the converted file
12string savePath = Path.Combine(OutputDir, "document-output.jpg");
13
14// Convert Markdown to HTML
15using var document = Converter.ConvertMarkdown(sourcePath);
16
17// Convert HTML document to JPG image file format
18Converter.ConvertHTML(document, new ImageSaveOptions(ImageFormat.Jpeg), savePath);
Convert Markdown to JPG using ImageSaveOptions
If your case is to convert an existing Markdown document from a local file system, the following example could help you. You need to follow a few steps:
- Open an existing Markdown document. In the example, we load a Markdown file from a local file system ( nature.md).
- Prepare a path for converted file saving.
- Convert Markdown to HTML. Use the
ConvertMarkdown(
sourcePath
) method of the Converter class to save Markdown as an HTML document. - Create a new ImageSaveOptions object and specify the required properties.
- Use the ConvertHTML() method to render the intermediary HTML document to JPG image. You need to pass the HTMLDocument, ImageSaveOptions, and output file path to the ConvertHTML() method.
The following code snippet demonstrates how to convert Markdown to JPG using custom save options:
1// Prepare a path to a source Markdown file
2string sourcePath = Path.Combine(DataDir, "nature.md");
3
4// Prepare a path to save the converted file
5string savePath = Path.Combine(OutputDir, "nature-options.jpg");
6
7// Convert Markdown to HTML
8using var document = Converter.ConvertMarkdown(sourcePath);
9
10// Initialize ImageSaveOptions
11var options = new ImageSaveOptions(ImageFormat.Jpeg)
12{
13 UseAntialiasing = true,
14 HorizontalResolution = 200,
15 VerticalResolution = 200,
16 BackgroundColor = System.Drawing.Color.AliceBlue
17};
18options.PageSetup.AnyPage = new Page(new Aspose.Html.Drawing.Size(600, 950), new Margin(30, 20, 10, 10));
19
20// Convert HTML to JPG
21Converter.ConvertHTML(document, options, savePath);
The ImageSaveOptions class provides numerous properties that give you full control over a wide range of parameters and improve the process of converting Markdown to JPG format. To learn more about ImageSaveOptions, please read the Fine-Tuning Converters article.
In the above example, we use:
UseAntialiasing
property that sets the rendering quality for this image. This example usesUseAntialiasing = true
for quality rendering.HorizontalResolution
andVerticalResolution
properties that set horizontal/vertical resolution for output images in pixels per inch. By default, these properties are 300 dpi.BackgroundColor
property that sets the color that will fill the background. The default BackgroundColor is Transparent.PageSetup
property that specifies the page size and margins in pixels.
Use UseAntialiasing = true
when you want to improve the visual quality of rendered shapes, text, and images in your application, especially when clarity and smooth edges are essential. Enabling antialiasing smooths out jagged edges by blending the colors of pixels around the edges, resulting in a softer, more refined look.
While UseAntialiasing = true
provides better visual quality, it can also increase processing time. For applications where rendering speed is a priority, it may be optimal to set UseAntialiasing = false
.
Convert Markdown to PNG in C#
The following code snippet demonstrates how to convert Markdown to PNG:
1// Prepare a path to a source Markdown file
2string sourcePath = Path.Combine(DataDir, "document.md");
3
4// Prepare a path to save the converted file
5string savePath = Path.Combine(OutputDir, "output.png");
6
7// Convert Markdown to HTML
8using var document = Converter.ConvertMarkdown(sourcePath);
9
10// Convert HTML document to PNG image file format
11Converter.ConvertHTML(document, new ImageSaveOptions(), savePath);
Aspose.HTML offers a free online MD to PNG Converter that converts Markdown to PNG image with high quality, easy and fast. Just upload, convert your files and get the result in a few seconds!
Convert Markdown to BMP in C#
The following code snippet demonstrates how to convert Markdown to BMP:
1// Prepare a path to a source Markdown file
2string sourcePath = Path.Combine(DataDir, "document.md");
3
4// Prepare a path to save the converted file
5string savePath = Path.Combine(OutputDir, "output.bmp");
6
7// Convert Markdown to HTML
8using var document = Converter.ConvertMarkdown(sourcePath);
9
10// Convert HTML document to BMP image file format
11Converter.ConvertHTML(document, new ImageSaveOptions(ImageFormat.Bmp), savePath);
Convert Markdown to GIF in C#
The following code snippet demonstrates how to convert Markdown to GIF:
1// Prepare a path to a source Markdown file
2string sourcePath = Path.Combine(DataDir, "document.md");
3
4// Prepare a path to save the converted file
5string savePath = Path.Combine(OutputDir, "output.gif");
6
7// Convert Markdown to HTML
8using var document = Converter.ConvertMarkdown(sourcePath);
9
10// Convert HTML document to GIF image file format
11Converter.ConvertHTML(document, new ImageSaveOptions(ImageFormat.Gif), savePath);
Convert Markdown to TIFF in C#
The following code snippet demonstrates how to convert Markdown to TIFF:
1// Prepare a path to a source Markdown file
2string sourcePath = Path.Combine(DataDir, "document.md");
3
4// Prepare a path to save the converted file
5string savePath = Path.Combine(OutputDir, "output.tiff");
6
7// Convert Markdown to HTML
8using var document = Converter.ConvertMarkdown(sourcePath);
9
10// Convert HTML document to TIFF image file format
11Converter.ConvertHTML(document, new ImageSaveOptions(ImageFormat.Tiff), savePath);
Download our Aspose.HTML for .NET library allows you to successfully, quickly, and easily convert your HTML, MHTML, EPUB, SVG, and Markdown documents to the most popular formats.
You can check the quality of Markdown to JPG conversion with our online MD to JPG Converter. Upload, convert your files and get results in a few seconds. Try our forceful Markdown to JPG Converter for free now!