Skybound.Gecko.GeckoWebBrowser.GetBitmap C# (CSharp) Method

GetBitmap() public method

Return a Bitmap Image of the current WebBrowsers Rendered page. Not supported on Linux - use OffScreenGeckoWebBrowser.
public GetBitmap ( uint width, uint height ) : Bitmap
width uint Width of the bimap
height uint Height of the bitmap
return System.Drawing.Bitmap
        public Bitmap GetBitmap(uint width, uint height)
        {
            return GetBitmap(0, 0, width, height);
        }

Same methods

GeckoWebBrowser::GetBitmap ( uint xOffset, uint yOffset, uint width, uint height ) : Bitmap