1

我有一个奇怪的问题,我列出了一个单词列表,并通过对单词进行谷歌搜索来创建屏幕截图。在它创建了 50 个屏幕截图之后,它开始创建空白图像!

有人可以帮我解决问题吗!

PS:如果我需要更清楚,请告诉我!

这是我用来创建屏幕截图的代码......在我的主页上,我只是循环我的话!

有人可以帮我解决问题吗

public class GeneateScreenshot
 {
 public void GenerateScreenshot()
  {

  }
public Bitmap GenerateScreenshot(string url)
{
    // This method gets a screenshot of the webpage
    // rendered at its full size (height and width)

    return GenerateScreenshot(url, -1, -1);
}

public Bitmap GenerateScreenshot(string url, int width, int height)
{
    // Load the webpage into a WebBrowser control

    WebBrowser wb = new WebBrowser();
    wb.ScrollBarsEnabled = false;
    wb.ScriptErrorsSuppressed = true;
    wb.Navigate(url);
    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();

    return bitmap;
}

}

4

1 回答 1

1

我怀疑该DrawToBitmap函数不是将 WebBrowser 控件转换为图像的正确方法。查看以下链接,看起来您需要使用一些本机方法才能可靠地执行此操作:

WebBrowser.DrawToBitmap() 还是其他方法?

将 WebBrowser.Document 转换为位图?

http://www.codeproject.com/Articles/58605/HTML-to-Image-in-C

PS 在玩这段代码的时候,我很快就被谷歌的机器人检测器发现了,所以你可能也遇到了麻烦。

于 2012-05-30T22:52:41.200 回答