从网页浏览器控件到图片框的图像 - C#

发布于 2024-10-21 05:50:36 字数 291 浏览 1 评论 0原文

我有图片框和网页浏览器控件。 在网络浏览器控件中,我正在显示带有图像的页面。 此图像可见。我无法传递到该图像的图片框 url,因为它不会显示。如果您直接从地址栏输入该图像的页面,则该图像不可见。

有没有办法从浏览器缓存或任何其他方式获取该图像?

我想在查看一个添加后获取此页面上出现的验证码图像。

http://www.clix-cents.com/pages/clickads

I have picturebox and webbrowser control.
in webbrowser control I'm displaying page with image.
This image is visible. I can't pass to picture box url of this image because it will not display. This image is not visible if you enter it's page directy from address bar.

Is there any way to get that image from browser cache or any other way?

I want to get captcha image that appears on this page after viewing one add.

http://www.clix-cents.com/pages/clickads

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我ぃ本無心為│何有愛 2024-10-28 05:50:36

您可以通过将图像复制到剪贴板来获取图像。 JavaScript 可以将 img 复制到剪贴板。

mshtml.HTMLWindow2Class w2 = webBrowser1.Document.Window.DomWindow as mshtml.HTMLWindow2Class;
w2.execScript("var ctrlRange = document.body.createControlRange();ctrlRange.add(document.getElementById('img1'));ctrlRange.execCommand('Copy');", "javascript");
Image image2 = Clipboard.GetImage();
pictureBox1.Image = image2;

You can get the image by copying it to the clipboard. JavaScript can copy the img to clipboard.

mshtml.HTMLWindow2Class w2 = webBrowser1.Document.Window.DomWindow as mshtml.HTMLWindow2Class;
w2.execScript("var ctrlRange = document.body.createControlRange();ctrlRange.add(document.getElementById('img1'));ctrlRange.execCommand('Copy');", "javascript");
Image image2 = Clipboard.GetImage();
pictureBox1.Image = image2;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文