Hello i was devlop the GYM ERP system, in that i want take the member photo using the webcam. These system in the Laravel and AngularJs . Please give me some suggestion how to do that.
i was doing that but still i have some issue, Image capture well but when i try to store the captured image that time i have some issue. Image not get in laravel variable
function take_snapshot(){
// take snapshot and get image data
Webcam.snap( function(data_uri) {
// display results in page
document.getElementById('results').innerHTML =
'';
});
this is javascript file
after capture image it will be store in the and i want store that image in in the variable then how is these possible
please give me some idea on it