I'm having an issue when trying to save a webpage as an image, everything appears to work well in my application until the saving portion.
string desktopPath = Environment.GetFolderPath(System.Environment.SpecialFolder.DesktopDirectory);
string imageFileName = desktopPath + browserView.Browser.URL.ToString();
browserView1.GetImage().Save(@imageFileName, ImageFormat.Png);
This throws an error
An unhandled exception of type 'System.NullReferenceException' occurred in App.exe
Additional information: Object reference not set to an instance of an object.
What's strange is using a dialog to save it, works fine:
if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
string imageFileName = saveFileDialog.FileName.ToString().Replace("%.png%", "");
browserView1.GetImage().Save(imageFileName, ImageFormat.Png);
}
Any ideas? I simply want the image to be saved without needing a dialog or user interaction, and for it to be saved to the desktop folder.
Saving Web Page to PNG Image
To take a screenshot of a specified web page you need to follow the following steps:
Example
The following example demonstrates how to capture an image of the complete web page. In this case, you even don't need to embed browser view.
Calculating Page Size
If you need to take the screenshot of the whole web page including scrollable hidden parts and you don’t know the web page dimensions, then you need to calculate it using the following approach:
In this code we use JavaScript and DOM API to get the dimensions of the loaded document.
Capturing Long Pages
If you have tried to capture a long web page, you may have noticed that the image is cut for the very long pages. This behavior is caused by the restriction inside the Chromium itself. Chromium renders web page’s content on the canvas with the maximum height set to 16384. If the web page’s height exceeds the maximum texture size, the part of the web page outside the Chromium canvas will not be drawn and will be filled with black color. To workaround this restriction and capture the complete image of the web page with the height that exceeds the maximum texture size, you should specify the following switches before creating any Browser or BrowserView instances:
If these switches are specified, the GPU process will be disabled and the Chromium maximum texture size will be changed from 16384 to viewHeight.