electron-capture
v1.1.3
Published
A small webpage capture extension for electron Application. Get a screenshot of the full webpage.
Downloads
32
Maintainers
Readme
electron-capture
An extension for Electron's BrowserWindow, Make it have the ability to capture full page.
Why I create this repo
I tried a lots of npm packages, but no one can add the feature (full page capture) for my electron-application. So I code this.
Install
npm install electron-capture --save
Usage
require('electron-capture')
mainWindow = new BrowserWindow({
width: 1366,
height: 768,
resizable: true,
webPreferences: {
preload: __dirname + '/node_modules/electron-capture/src/preload.js'
}
})
mainWindow.loadURL('https://www.google.com/')
mainWindow.captureFullPage(function(imageStream){
// return an image Stream
imageStream.pipe(fs.createWriteStream('example.png'));
})