Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 964 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 964 Bytes

electron-capture

An extension for Electron's BrowserWindow, Make it have the ability to capture full page.

npm version

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'));
})

Demo