Is there a way to render html to image like PNG? I know that it is possible with canvas but I would like to render standard html element like div for example.
You can add reference HtmlRenderer to your project and do the following,
string htmlCode ="This is a sample html."; Image image = HtmlRender.RenderToImage(htmlCode ,new Size(500,300));
This is a sample html.