3

Internet Explorer から完全にレンダリングされた画像を保存しようとしています。

残念ながら、いくつかの制限があるため、WinForm コンポーネント「WebBrowser」や、HtmlCapture.Net やオンライン サービスなどのサード パーティ コンポーネントを使用することはできません。しかし、IE を使用するだけで問題を解決できることを願っています。

私のコードの主要部分は次のようになります。

      SHDocVw.WebBrowser wb = GetBrowser();
      wb.DocumentComplete += wb_DocumentComplete2;
      wb.Navigate(_url);

      private void wb_DocumentComplete2(object pDisp, ref object URL)
    {
        var iwb2 = (IWebBrowser2) pDisp;
        var document = (IHTMLDocument2) iwb2.Document;

        if (heightsize > 0 && widthsize > 0)
        {
            IntPtr _hwnd = IntPtr.Zero;
            try
            {
                _hwnd = new IntPtr(iwb2.HWND);
            }
            catch (Exception e)
            {
            }

            if (_hwnd != IntPtr.Zero)
            {
                //Start here
                RECTL r = new RECTL
                              {
                                  top = 0,
                                  left = 0,
                                  bottom = heightsize,
                                  right = widthsize
                              };
                IViewObject ivo = document as IViewObject;
                if (ivo != null)
                {
                    using (Bitmap bmp = new Bitmap(widthsize, heightsize))
                    {
                        using (Graphics g = Graphics.FromImage(bmp))
                        {
                            //get the handle to the device context and draw
                            IntPtr hdc = g.GetHdc();
                            ivo.Draw(DVASPECT.DVASPECT_CONTENT, 1, IntPtr.Zero, IntPtr.Zero, IntPtr.Zero, hdc, ref r, ref r, IntPtr.Zero, 0);
                            g.ReleaseHdc(hdc);
                        }
                        String filename = @"C:\" + Guid.NewGuid() + ".png";
                        bmp.Save(filename, ImageFormat.Png);
                    }
                }
            }
        }
    }

しかし、私はいつも黒いイメージしか得ません。

私も BitBlt を使用しようとしましたが、Web ページが大きすぎる場合、画像の下部が黒くなります。これは、ウィンドウの表示部分のみをコピーすることを想定している BltBit の性質によるものです。CopyFromScreen は同じ理由で機能しません。

このソリューション以外にオプションはありますか?

とにかく、誰かが私の提案や正しい方向性を教えてくれたら本当に感謝しています。

更新しました:

試してみました。そのように

using (Graphics graphics = Graphics.FromImage(new Bitmap(Width,Height)))
        {
            IntPtr hdcDestination = graphics.GetHdc();
            tagRECT lprcBounds = new tagRECT(0, 0, Width, Height);
            tagRECT lprcWBounds = new tagRECT(0, 0, Width, Height);
            int i = viewObject.Draw(1, 1, IntPtr.Zero, IntPtr.Zero, hdcDestination, IntPtr.Zero, lprcBounds, lprcWBounds, IntPtr.Zero, 0);
            IntPtr hdcMemory = Helper.Gdi32.CreateCompatibleDC(hdcDestination);
            IntPtr bitmap = Helper.Gdi32.CreateCompatibleBitmap(hdcDestination, Width, Height);
            if (bitmap != IntPtr.Zero)
            {
                IntPtr hOld = Helper.Gdi32.SelectObject(hdcMemory, bitmap);
                Helper.Gdi32.BitBlt(hdcMemory,0, 0,Width, Height, hdcDestination, 0, 0, Helper.Gdi32.SRCCOPY);
                Helper.Gdi32.SelectObject(hdcMemory, hOld);
                Helper.Gdi32.DeleteDC(hdcMemory);
                graphics.ReleaseHdc(hdcDestination);
                Image img = Image.FromHbitmap(bitmap);
                String filename = @"C:\" + Guid.NewGuid() + ".png";
                img.Save(filename, ImageFormat.Png);
            }
        }

しかし、私はここでも成功していません。

IHTMLElementRenderも使用しようとしましたが、このキャストは失敗します:

IHTMLElement element = (IHTMLElement) document.body; // Okay, element isn't null
IHTMLElementRender render = (IHTMLElementRender) element; //Fails!

とにかく、ここに完全なコードがあり、Winforms からの WebBrowser コントロールで十分に機能すると思います。

private void OnDocumentComplete(object sender, DWebBrowserEvents2_DocumentCompleteEvent e)
{
    IHTMLDocument2 document = (IHTMLDocument2) this.axWebBrowser1.Document;
    if (document != null)
    {
          IHTMLElement element = (IHTMLElement) document.body;
          if (element != null)
          {
              IHTMLElementRender render = (IHTMLElementRender) element;
              if (render != null)
              {
                    using (Graphics graphics = this.pictureBox1.CreateGraphics())
                    {
                        IntPtr hdcDestination = graphics.GetHdc();
                        render.DrawToDC(hdcDestination);
                        IntPtr hdcMemory = GDI32.CreateCompatibleDC(hdcDestination);
                        IntPtr bitmap = GDI32.CreateCompatibleBitmap(
                              hdcDestination, 
                              this.axWebBrowser1.ClientRectangle.Width, this.axWebBrowser1.ClientRectangle.Height
                              );

                        if (bitmap != IntPtr.Zero)
                        {
                              IntPtr hOld = (IntPtr) GDI32.SelectObject(hdcMemory, bitmap);
                              GDI32.BitBlt(
                                  hdcMemory,
                                  0, 0,
                                  this.axWebBrowser1.ClientRectangle.Width, this.axWebBrowser1.ClientRectangle.Height,
                                  hdcDestination,
                                  0, 0,
                                  (int) GDI32.TernaryRasterOperations.SRCCOPY
                                  );
                              GDI32.SelectObject(hdcMemory, hOld);
                              GDI32.DeleteDC(hdcMemory);
                              graphics.ReleaseHdc(hdcDestination);

                              this.pictureBox.Image = Image.FromHbitmap(bitmap);
                        }
                    }
              }
          }
    }
}
4

1 に答える 1