From b77c03357c204575899456b940e20535fdf4cbf5 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 27 Mar 2015 14:43:29 +0800 Subject: [PATCH] docs: BrowserWindow.capturePage nows returns NativeImage --- docs/api/browser-window.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/api/browser-window.md b/docs/api/browser-window.md index a8456b5767de..938c07f352eb 100644 --- a/docs/api/browser-window.md +++ b/docs/api/browser-window.md @@ -490,12 +490,9 @@ Starts inspecting element at position (`x`, `y`). * `callback` Function Captures the snapshot of page within `rect`, upon completion `callback` would be -called with `callback(image)`, the `image` is a `Buffer` that stores the PNG -encoded data of the snapshot. Omitting the `rect` would capture the whole -visible page. - -You can write received `image` directly to a `.png` file, or you can base64 -encode it and use data URL to embed the image in HTML. +called with `callback(image)`, the `image` is an instance of +[NativeImage](native-image.md) that stores data of the snapshot. Omitting the +`rect` would capture the whole visible page. **Note:** Be sure to read documents on remote buffer in [remote](remote.md) if you are going to use this API in renderer