0

可能重复:
以编程方式获取页面截图

我正在使用 winapi 开发一个小型桌面程序

  1. 我想要的是该应用程序将具有带有一些按钮的文本框。用户可以在文本框中键入一个字符串并点击搜索按钮。

  2. 之后,程序将在 google 上搜索该字符串并将搜索结果页面保存为图像文件,所有这些都将在后台完成,无需打开新窗口。

如果这可以用 VB 或 C# 或 MFC 等其他编程语言轻松完成,请发表评论

4

1 回答 1

0
string filename = Application.StartupPath + "\\abc.Png";
        int width = -1;
        int height = -1;

        WebBrowser wb = new WebBrowser();
        wb.ScriptErrorsSuppressed = true;
        wb.Navigate("http://www.google.com/search?q=" + txtSearch.Text);
        while (wb.ReadyState != WebBrowserReadyState.Complete)
        {
            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);
        MessageBox.Show("Image Saved");
于 2012-09-08T06:57:31.127 回答