gpt4 book ai didi

c - 如何使用 DotNetBrowser 捕获验证码图像对象

转载 作者:行者123 更新时间:2023-11-30 16:14:31 34 4
gpt4 key购买 nike

我们在 DotNetBrowser 上显示的网站包含验证码图像元素。在代码元素中捕获该元素图像类型的方法是什么?

网址:https://paydas.its.gov.tr/hesap_yonetimi/giris

browserView = new WinFormsBrowserView(BrowserFactory.Create(BrowserType.LIGHTWEIGHT));
//...
browserView.Browser.SetSize(1024, 768);
Bitmap screenshot = browserView.Browser.ImageProvider.GetImage() as Bitmap;
DOMElement captchaElement = browserView.Browser.GetDocument().GetElementById("imgCaptcha");
pictureBox1.Image = screenshot?.Clone(captchaElement.BoundingClientRect, screenshot.PixelFormat);

这种方法并不健康。

最佳答案

我找到了解决方案。

创建浏览器对象后,我添加了以下代码片段。

int viewHeight = 20000;
string[] switches = {
"--disable-gpu",
"--max-texture-size=" + viewHeight
};
BrowserPreferences.SetChromiumSwitches(switches);

关于c - 如何使用 DotNetBrowser 捕获验证码图像对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57604205/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com