1.0.0 • Published 7 years ago

window-screenshot v1.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

window-screenshot

Node.Js package using .NET and Edge.js to take screenshot of a given window

Installation

npm install --save window-screenshot

Why this module

I was starting a project and didn't find any module to take a screenshot of a given window only + keep in in memory (no file written to disk).

Example

Take a screenshot of the current foreground window and write to a file:

let fs = require('fs')
let screenshot = require('../')

screenshot(0, // 0 is for active window
   function (err, res) {
       if(err) throw err;

       fs.writeFile("result.png", res);
   });

Todo

  • Take title/class name of the window and lookup the handle