Merge pull request #1884 from lucidogen/master

Fixed example with correct capturePage api.
This commit is contained in:
Cheng Zhao 2015-06-08 22:32:06 +08:00
commit 52166d2999

View file

@ -97,7 +97,8 @@ returns a `Buffer` by calling the passed callback:
```javascript
var remote = require('remote');
var fs = require('fs');
remote.getCurrentWindow().capturePage(function(buf) {
remote.getCurrentWindow().capturePage(function(image) {
var buf = image.toPng();
fs.writeFile('/tmp/screenshot.png', buf, function(err) {
console.log(err);
});
@ -115,7 +116,8 @@ The work-around is to write the `buf` in the main process, where it is a real
```javascript
var remote = require('remote');
remote.getCurrentWindow().capturePage(function(buf) {
remote.getCurrentWindow().capturePage(function(image) {
var buf = image.toPng();
remote.require('fs').writeFile('/tmp/screenshot.png', buf, function(err) {
console.log(err);
});