如何从 GeckoFX 浏览器中的页面获取图像?
我知道我可以简单地获取 'src' 属性的值,然后使用 WebClient 下载文件,但我需要从浏览器中获取它,否则下次下载时图片将被更改。
但是,当右键单击图像时,您可以将此代码放入 etc 上下文菜单条中:
if(geckoWebBrowser1.CopyImageContents())//if image contents can be copied...
{
System.Drawing.Image img = Clipboard.GetImage();//copy image into variable
//here you can use a folder browser dialog to locate path manualy
img.Save(Application.StartupPath + "tempImg.jpg");//will save image to path
//last two lines is optional and can open same image in default image preview program
string fak = Application.StartupPath + "tempImg.jpg";
System.Diagnostics.Process.Start(fak);
}
Geckofx 13 支持这一点:geckofx 中的图像创建器