3

いくつかのシルバーライトコントロールを表示するWebページがあります。このWebページのスクリーンショットをプログラムで撮る必要があります。

現在、スクリーンショットを撮るためにSystem.Windows.Forms.WebBrowserコントロールを使用しています。

通常のページのスクリーンショットを撮ると、Forms.WebBrowserは正常に機能します。ただし、Silverlightコントロールのあるページでは機能しません。

スクリーンショットを撮るための私のコードは次のとおりです。ビットマップビットマップ=null; using(WebBrowser webBrowser = new WebBrowser()){webBrowser.ScrollBarsEnabled = false; webBrowser.ScriptErrorsSuppressed = true;

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

            // Load the webpage into a WebBrowser control
            webBrowser.Navigate(url);
            while (webBrowser.ReadyState != WebBrowserReadyState.Complete)
            {
                Application.DoEvents();
            }

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

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

            }

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

}

4

1 に答える 1

0

このコードを使用して、Web ページのスクリーンショットを撮ります。

    string myPicsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures) + @"\SchreenshotFolder\";
    if (System.IO.Directory.Exists(myPicsPath))
    {
      Rectangle bounds = yourBrowser.Bounds;
      using (Bitmap bitmap = new Bitmap(bounds.Width, bounds.Height))
      {
        using (Graphics g = Graphics.FromImage(bitmap))
        {
          g.CopyFromScreen(new Point(bounds.Left, bounds.Top), Point.Empty, bounds.Size);
        }
        bitmap.Save(myPicsPath + System.IO.Path.GetRandomFileName() + ".png", System.Drawing.Imaging.ImageFormat.Png);
      }
    }
    else
    {
      System.IO.Directory.CreateDirectory(myPicsPath);
      MessageBox.Show("Screenshot directory created in " + Environment.GetFolderPath(Environment.SpecialFolder.MyPictures) + @"\" + " named SchreenshotFolder\nScreenshot is not saved. Hit button again to save it.");
    }

構造 Web ブラウザー コントロールの境界には、スクリーンショットを撮るために必要なものがすべて含まれています。または、サムネイルとして使用する場合は、ビットマップのサイズを縮小できます。

于 2012-10-05T19:02:53.967 に答える