Reputation: 127
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.
Upvotes: 1
Views: 1328
Reputation: 11
To take a screenshot of a specified web page you need to follow the following steps:
Note: the OnRepaint event used in the following sample is supported for lightweight rendering mode only. The GetImage() method works for both modes, but the component should be embedded and shown before calling this method.
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.
using DotNetBrowser;
using DotNetBrowser.Events;
using DotNetBrowser.WPF;
using System;
using System.Drawing.Imaging;
using System.Threading;
using System.Windows;
namespace HTMLToImageSample
{
public partial class WindowMain : Window
{
private WPFBrowserView browserView;
public WindowMain()
{
this.Loaded += delegate
{
Width = 400;
Height = 300;
browserView = new WPFBrowserView(BrowserFactory.Create(BrowserType.LIGHTWEIGHT));
Browser browser = browserView.Browser;
// #1 Set browser initial size
browserView.Browser.SetSize(1280, 1024);
// #2 Load web page and wait until web page is loaded completely.
ManualResetEvent resetEvent = new ManualResetEvent(false);
FinishLoadingFrameHandler listener = new FinishLoadingFrameHandler((object sender, FinishLoadingEventArgs e) =>
{
if (e.IsMainFrame)
{
resetEvent.Set();
}
});
browser.FinishLoadingFrameEvent += listener;
try
{
browser.LoadURL("teamdev.com/dotnetbrowser");
resetEvent.WaitOne(new TimeSpan(0, 0, 45));
}
finally
{
browser.FinishLoadingFrameEvent -= listener;
}
// #3 Set the required document size.
JSValue documentHeight = browserView.Browser.ExecuteJavaScriptAndReturnValue(
"Math.max(document.body.scrollHeight, " +
"document.documentElement.scrollHeight, document.body.offsetHeight, " +
"document.documentElement.offsetHeight, document.body.clientHeight, " +
"document.documentElement.clientHeight);");
JSValue documentWidth = browserView.Browser.ExecuteJavaScriptAndReturnValue(
"Math.max(document.body.scrollWidth, " +
"document.documentElement.scrollWidth, document.body.offsetWidth, " +
"document.documentElement.offsetWidth, document.body.clientWidth, " +
"document.documentElement.clientWidth);");
int scrollBarSize = 25;
int viewWidth = (int)documentWidth.GetNumber() + scrollBarSize;
int viewHeight = (int)documentHeight.GetNumber() + scrollBarSize;
// #4 Register OnRepaint to get notifications
// about paint events. We expect that web page will be completely rendered twice:
// 1. When its size is updated.
// 2. When HTML content is loaded and displayed.
ManualResetEvent waitEvent = new ManualResetEvent(false);
DrawingView drawingView = (DrawingView)browserView.GetInnerView();
drawingView.OnRepaint += delegate(object sender, OnRepaintEventArgs e)
{
// Make sure that all view content has been repainted.
if (e.UpdatedRect.Size.Equals(e.ClientSize))
{
waitEvent.Set();
}
};
browserView.Browser.SetSize(viewWidth, viewHeight);
// #5 Wait until Chromium renders web page content.
waitEvent.WaitOne();
// #6 Save Image of the loaded web page into a PNG file.
Dispatcher.BeginInvoke((Action)(() =>
{
browserView.GetImage().Save(@"teamdev.png", ImageFormat.Png);
}));
};
}
[STAThread]
public static void Main()
{
Application app = new Application();
WindowMain wnd = new WindowMain();
app.Run(wnd);
var browser = wnd.browserView.Browser;
wnd.browserView.Dispose();
browser.Dispose();
}
}
}
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:
JSValue documentHeight = browser.ExecuteJavaScriptAndReturnValue(
"Math.max(document.body.scrollHeight, " +
"document.documentElement.scrollHeight, document.body.offsetHeight, " +
"document.documentElement.offsetHeight, document.body.clientHeight, " +
"document.documentElement.clientHeight);");
JSValue documentWidth = browser.executeJavaScriptAndReturnValue(
"Math.max(document.body.scrollWidth, " +
"document.documentElement.scrollWidth, document.body.offsetWidth, " +
"document.documentElement.offsetWidth, document.body.clientWidth, " +
"document.documentElement.clientWidth);");
int scrollBarSize = 25;
int viewWidth = (int) documentWidth.GetNumber() + scrollBarSize;
int viewHeight = (int) documentHeight.GetNumber() + scrollBarSize;
In this code we use JavaScript and DOM API to get the dimensions of the loaded document.
The complete sample solution can be found in the attachments to this article. The project in this solution has NuGet dependencies, which will be resolved automatically during build.
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:
int viewWidth = 1024;
int viewHeight = 20000;
string[] switches = {
"--disable-gpu",
"--max-texture-size=" + viewHeight
};
BrowserPreferences.SetChromiumSwitches(switches);
If these switches are specified, the GPU process will be disabled and the Chromium maximum texture size will be changed from 16384 to viewHeight.
Note: The --max-texture-size switch was introduced in DotNetBrowser 1.9.
Upvotes: 1