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

GetBitmap() public method

Return a Bitmap Image of the current WebBrowsers Rendered page.
public GetBitmap ( uint xOffset, uint yOffset, uint width, uint height ) : Bitmap
xOffset uint
yOffset uint
width uint Width of the bitmap
height uint Height of the bitmap
return System.Drawing.Bitmap
        public Bitmap GetBitmap(uint xOffset, uint yOffset, uint width, uint height)
        {
            return new ImageCreator(this).GetBitmap(xOffset, yOffset, width, height);
        }

Same methods

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