HtmlRenderer不会从css渲染背景图像

时间:2015-07-06 11:07:26

标签: c# html css .net html-rendering

我使用HtmlRenderer从html标记生成jpg图像。但是它不适用来自css的背景图片:

<div style="background:url(https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTbNHtYU6bKKmxkJXlqDr7y7afZyZtw-WwDg6DoUNCb9nElkplEuw); width: 440px; height: 361px">
   Some content here.
</div>

这是C#代码:

String ecardHtml = File.ReadAllText("testWithGoodImage.html");
using (Image img = HtmlRender.RenderToImageGdiPlus(ecardHtml, maxWidth: 440, textRenderingHint: TextRenderingHint.AntiAliasGridFit))
{
    img.Save("result.jpg");
}

调试显示图像甚至没有请求,所以我怀疑它不受支持。但是<img>元素确实运行良好。

所以问题是如何让它发挥作用。

我知道我可以在HtmlRenderer中渲染图像上的html,但我希望只在html代码中使用所有标记。

1 个答案:

答案 0 :(得分:1)

HTML渲染器支持背景图像CSS,如果你真的想要用HTML做,那么像这样的东西就能完成这个任务:

<div style="width: 440px; height: 361px;position:relative">
    <div style="position:absolute;top:0;left:0;z-index:8888"><img src="https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTbNHtYU6bKKmxkJXlqDr7y7afZyZtw-WwDg6DoUNCb9nElkplEuw"/></div>
    <div style="position:absolute;top:0;left:0;z-index:9999">Some content here.</div>       
</div>

或者只是添加背景图片而不仅仅是背景

<div style="background-image:url(https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTbNHtYU6bKKmxkJXlqDr7y7afZyZtw-WwDg6DoUNCb9nElkplEuw); width: 440px; height: 361px">
   Some content here.
</div>