C#WebBrowser控件将网页保存为图像,重定向问题

时间:2012-02-02 23:59:03

标签: asp.net image redirect webbrowser-control

我在控制台应用程序中使用Web浏览器控件,它是以编程方式创建的。它会传递一个url并使用DrawToBitmap将页面保存为图像文件。

它似乎适用于许多网址但不适用于某些网址,包括www.google.co.uk,它会保存空白页面。 IBM.com和microsoft.com工作,认为它可能与网站进行重定向有关。

这是代码:

 int width = -1;
        int height = -1;

        // Load the webpage into a WebBrowser control
        WebBrowser wb = new WebBrowser();
        wb.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(wb_DocumentCompleted);
        wb.Navigated += new WebBrowserNavigatedEventHandler(wb_Navigated);

        wb.AllowNavigation = true;
        wb.ScrollBarsEnabled = false;
        wb.ScriptErrorsSuppressed = true;
        wb.Navigate(url);

        while (wb.ReadyState != WebBrowserReadyState.Complete)
        {
            Debug.WriteLine("Loading loop..");
            Application.DoEvents();
        }



        // Set the size of the WebBrowser control
        wb.Width = width;
        wb.Height = height;

        if (width == -1)
        {
            // Take Screenshot of the web pages full width
            wb.Width = wb.Document.Body.ScrollRectangle.Width;
        }

        if (height == -1)
        {
            // Take Screenshot of the web pages full height
            wb.Height = wb.Document.Body.ScrollRectangle.Height;
        }

        // Get a Bitmap representation of the webpage as it's rendered in the WebBrowser control
        Bitmap bitmap = new Bitmap(wb.Width, wb.Height);
        wb.DrawToBitmap(bitmap, new Rectangle(0, 0, wb.Width, wb.Height));
        wb.Dispose();

        bitmap.Save(filename, System.Drawing.Imaging.ImageFormat.Png);
        Debug.WriteLine("Saved");
        Application.Exit();

为什么有些网站不起作用的任何想法?

感谢您的时间

1 个答案:

答案 0 :(得分:0)

你可能试图在它完成加载之前保存它,检测WB是否满载是WB控制的最大问题,多年来我已经开发了几种方法,所以它涉及很多工作,并且那里是您需要实施的各种方法。

另外,不要忘记,某些HTML数据可能会在一个帧中加载,因此您可能需要获取对帧的引用,并为每个帧和这些帧中的所有帧执行相同的操作(嵌套帧无限嵌套必须检测并添加到您的对象引用中使用) - 还需要帧引用才能进行可靠的加载完整检测,单独检查readystate或.busy是非常不可靠的,您的代码几乎肯定会在大多数情况下中断。查看我的一些与WB相关的帖子了解更多内容,或者:Webbrowser Control Limitations

此外,如果您需要更多帮助,请告诉我,我可以为您提供有关检测加载完成的方法的指示。