sudo apt-get install fswebcam
const exec = require('child_process').exec;
exec('fswebcam --no-title --no-subtitle --no-info --no-banner --verbose --resolution 640x480 --skip 20 --save zzz.jpg',
function (error, stdout, stderr) {
if(stderr)
return console.log('stderr: ' + stderr);
if (error !== null)
return console.log('exec error: ' + error);
// тут код, который производит необходимые действия над файлом zzz.jpg'
});
--device <name>
в вызов команды fswebcam
const exec = require('child_process').exec;
const opt = {
offsetX: 100, // расстояние от левого края экрана до захватываемой области (в пикселях)
offsetY: 100, // расстояние от верхнего края экрана до захватываемой области (в пикселях)
width: 500, // ширина захватываемой области (в пикселях)
height: 300, // высота захватываемой области (в пикселях)
filename: './zzz.png' // имя файла в который будет записан скриншот
};
exec('DISPLAY=:0.0 import -window root -crop '+opt.offsetX+'x'+opt.offsetY+'+'+opt.width+'+'+opt.height+' '+opt.filename,
function (error, stdout, stderr) {
if(stderr)
return console.log('stderr: ' + stderr);
if (error !== null)
return console.log('exec error: ' + error);
// тут код, который производит необходимые действия над файлом zzz.jpg'
});
makeRequest('Ваш урл с даннымми');
function makeRequest(url) {
var httpRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari, ...
httpRequest = new XMLHttpRequest();
if (httpRequest.overrideMimeType) {
httpRequest.overrideMimeType('text/xml');
}
} else if (window.ActiveXObject) { // IE
try {
httpRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!httpRequest) {
console.log('Не вышло :( Невозможно создать экземпляр класса XMLHTTP ');
return false;
}
httpRequest.onreadystatechange = function() {
console.log('Данные отправлены');
};
httpRequest.open('GET', url, true);
httpRequest.send(null);
}
ссылки:
Фей против Socket.IO(и Джаггернаут)
faye