Bhavesh Vankar

Bhavesh Vankar

  • 731
  • 1.1k
  • 84.8k

Image not saving in folder.

Sep 7 2020 1:18 AM
i have access the web cam by the jquery in asp.net c#. by below code.
 
  1. <script type="text/javascript">  
  2.         $(function () {  
  3.             Webcam.set({  
  4.                 width: 320,  
  5.                 height: 240,  
  6.                 mode:'save',  
  7.                 image_format: 'jpeg',  
  8.                 jpeg_quality: 90  
  9.             });  
  10.             Webcam.attach('#webcam');  
  11.             $("#btnCapture").click(function ()  
  12.             {  
  13.                 Webcam.snap(function (data_uri)  
  14.                 {  
  15.                     $("#imgCapture")[0].src = data_uri;  
  16.                 });  
  17.             });  
  18.         });  
  19.     </script>  
i want to store captured image by webcam store into folder how to do it with this code...? 

Answers (2)