我有URL的字符串。例如“http://google.com”。
有没有办法下载并将此页面呈现为图片文件? ( “test.jpg放在”)
我尝试使用WebBrowser控件来下载和渲染图片,但只有当WebBrowser以显示的形式放置时它才有效。在其他方面,它只渲染黑色矩形。
但我想渲染图片而没有任何视觉效果(创建,激活表单等)。
答案 0 :(得分:9)
Internet Explorer支持IHtmlElementRenderer接口,可用于将页面呈现给任意设备上下文。这是一个示例表单,向您展示如何使用它。从Project + Add Reference开始,选择Microsoft.mshtml
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication1 {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
webBrowser1.Url = new Uri("http://stackoverflow.com");
webBrowser1.DocumentCompleted += webBrowser1_DocumentCompleted;
}
void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) {
if (!e.Url.Equals(webBrowser1.Url)) return;
// Get the renderer for the document body
mshtml.IHTMLDocument2 doc = (mshtml.IHTMLDocument2)webBrowser1.Document.DomDocument;
mshtml.IHTMLElement body = (mshtml.IHTMLElement)doc.body;
IHTMLElementRender render = (IHTMLElementRender)body;
// Render to bitmap
using (Bitmap bmp = new Bitmap(webBrowser1.ClientSize.Width, webBrowser1.ClientSize.Height)) {
using (Graphics gr = Graphics.FromImage(bmp)) {
IntPtr hdc = gr.GetHdc();
render.DrawToDC(hdc);
gr.ReleaseHdc();
}
bmp.Save("test.png");
System.Diagnostics.Process.Start("test.png");
}
}
// Replacement for mshtml imported interface, Tlbimp.exe generates wrong signatures
[ComImport, InterfaceType((short)1), Guid("3050F669-98B5-11CF-BB82-00AA00BDCE0B")]
private interface IHTMLElementRender {
void DrawToDC(IntPtr hdc);
void SetDocumentPrinter(string bstrPrinterName, IntPtr hdc);
}
}
}
答案 1 :(得分:4)
不幸的是,MS不赞成在IE 9中使用IHtmlElementRenderer :: DrawToDC()。 http://msdn.microsoft.com/en-us/library/aa752273(v=vs.85).aspx