electron-capture

1.1.3 • Public • Published

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

/electron-capture/

    Package Sidebar

    Install

    npm i electron-capture

    Weekly Downloads

    16

    Version

    1.1.3

    License

    none

    Last publish

    Collaborators

    • geoffzhu