3

我想在Asp.Net MVC中使用 C# 从 Textarea 或其他输入控件(不是整个网页)中输入的 HTML 代码生成图像(JPEG)。MVC 不支持 WebBrowser 控件。

此 HTML 包含数据和图像

HTML

<b>Convert Html To Image<b> 
<br/>
<img src="C:\Logo.jpg" alt="Smiley face" width="42" height="42"> 

我将 html 代码传递给了位图图像创建功能的控制器

private Bitmap CreateBitmapImage(string html)
{
   Bitmap objBmpImage = new Bitmap(1, 1);

   int intWidth = 0;
   int intHeight = 0;

   // Create the Font object for the image text drawing.
   Font objFont = new Font("Arial", 20, System.Drawing.FontStyle.Bold,  System.Drawing.GraphicsUnit.Pixel);

   // Create a graphics object to measure the text's width and height.
   Graphics objGraphics = Graphics.FromImage(objBmpImage);

   // This is where the bitmap size is determined.
   intWidth = (int)objGraphics.MeasureString(html, objFont).Width;
   intHeight = (int)objGraphics.MeasureString(html, objFont).Height;

   // Create the bmpImage again with the correct size for the text and font.
   objBmpImage = new Bitmap(objBmpImage, new Size(intWidth, intHeight));

   // Add the colors to the new bitmap.
   objGraphics = Graphics.FromImage(objBmpImage);

   // Set Background color
   objGraphics.Clear(Color.White);
   objGraphics.SmoothingMode = SmoothingMode.AntiAlias;
   objGraphics.TextRenderingHint = TextRenderingHint.AntiAlias;
   objGraphics.DrawString(html, objFont, new SolidBrush(Color.FromArgb(102, 102, 102)), 0, 0);
   objGraphics.Flush();
   return (objBmpImage);
}

但它会像这样返回输出

在此处输入图像描述

但需要输出

在此处输入图像描述

有没有办法生成这个(从 html 生成图像的步骤)或任何可用的第三方开源组件,如HtmlToImageConverter

4

2 回答 2

3

可以使用HtmlRenderer dll将 HTML 渲染为图像 。您可以在 HtmlRenderer.WinForms NuGet 包中获取它(它还将安装 HtmlRenderer.Core

有一个关于它的问题列表,但它有效。你可以做类似的事情

public static Image RenderToImage<T>(String fullViewName, T model)
{
    String html = RenderViewToString(fullViewName, model);
    var image = HtmlRender.RenderToImage(html);
    return image;
}

public static String RenderViewToString<T>(String fullViewName, T model)
{
    String viewText = File.ReadAllText(fullViewName);
    String renderedText = Razor.Parse(viewText, model); // RazorEngine here. I don't have MVC
    return renderedText;
}
于 2014-11-07T15:37:40.173 回答
0

webSupergoo从 html 生成 jpg。它不是开源的,但可以免费下载 如果它可以使用itextsharp解决您的问题,您也可以将 html 转换为 pdf

于 2013-08-05T10:24:27.100 回答