This guide elaborates on how to convert Markdown to Image in C#. It contains the stepwise algorithm and a running code sample to export Markdown to PNG in C#. Moreover, you can modify this code to create the output images in different image formats including BMP, GIF, JPG, etc.
Steps to Render Markdown to Image in C#
- Prepare the IDE by installing the Aspose.HTML library for exporting markdown files
- Create a sample markdown file
- Convert the loaded markdown contents to HTML file format with the convert_markdown method
- Render the converted HTML format as an image by calling the convert_html method
The steps above present an overview of the process of converting MD to PNG in C#. As a prerequisite, you must prepare the environment with the required installation. Subsequently, initiate the process by creating a sample input file and proceeding with the rendering to HTML, followed by the image rendering.
Code to Convert Markdown to PNG in C#
This sample code demonstrates how to convert markdown to image in C#. However, you can customize it by modifying the output image format by choosing any value from the ImageFormat enumeration. Likewise, you can set many other properties of the ImageSaveOptions class to set the image dimensions, resolution, etc. based on your requirements.
In this tutorial, you have explored how to export Markdown to JPG in C#. On the other hand, if you want to convert Markdown to Word, then read the article on Convert Markdown to Word in C#.