Render HTML to an image

后端 未结 17 2135
栀梦
栀梦 2020-11-22 16:06

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.

17条回答
  •  广开言路
    2020-11-22 16:22

    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));

提交回复
热议问题