电子截屏应用
制作屏幕截图
安装
$ npm install electron-screenshot-app --save
用法
var app = require ( 'electron' ) . app ;
var screenshot = require ( 'electron-screenshot-app' ) ;
app . on ( 'ready' , function ( ) {
screenshot ( {
url : 'http://sassdoc.com' ,
width : 1920 ,
height : 1080
} ,
function ( err , image ) {
// image.data is a Node Buffer
// image.size contai
1