Last active
December 12, 2016 01:01
-
-
Save seb-patron/8a636826084960cf349dbbc2948f401f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Restrict camera resolution to 640x360 | |
var constraints = window.constraints = { audio: false, video: { width: 640, height: 360 } }; | |
var canvas = document.querySelector('canvas'); | |
var filters = ['', 'grayscale', 'sepia', 'invert'], currentFilter = 0; | |
var video = document.querySelector('video'); | |
//Accesses the user's camera and displays feed in video tag | |
navigator.mediaDevices.getUserMedia(constraints) | |
.then(function(stream) { | |
var videoTracks = stream.getVideoTracks(); | |
console.log('Got stream with constraints:', constraints); | |
console.log('Using video device: ' + videoTracks[0].label); | |
stream.onended = function() { | |
console.log('Stream ended'); | |
}; | |
window.stream = stream; // make variable available to browser console | |
video.srcObject = stream; | |
}) | |
.catch(function(err) { console.log(err.name + ": " + err.message); }); // catches any errors | |
//Displays the captured selfie in the canvas area and applies filters as selected | |
document.querySelector('#capture').addEventListener('click', function (event) { | |
if (video) { | |
canvas.width = video.clientWidth; | |
canvas.height = video.clientHeight; | |
var context = canvas.getContext('2d'); | |
context.drawImage(video, 0, 0); | |
} | |
}); | |
document.querySelector('#downloadLnk').addEventListener('click', function (event) { | |
var dt = canvas.toDataURL('image/jpeg'); | |
this.href = dt; | |
}); | |
// Filter selection below | |
//No filter | |
document.querySelector('#noFilter').addEventListener('click', function (event) { | |
canvas.className = filters[0]; | |
}); | |
//Black and White filter | |
document.querySelector('#blackAndWhite').addEventListener('click', function (event) { | |
canvas.className = filters[1]; | |
}); | |
//Sepia Filter | |
document.querySelector('#sepia').addEventListener('click', function (event) { | |
canvas.className = filters[2]; | |
}); | |
//Invert filter | |
document.querySelector('#invert').addEventListener('click', function (event) { | |
canvas.className = filters[3]; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment