TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bhavesh Vankar
762
1.1k
87.3k
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.
<script type=
"text/javascript"
>
$(
function
() {
Webcam.set({
width: 320,
height: 240,
mode:
'save'
,
image_format:
'jpeg'
,
jpeg_quality: 90
});
Webcam.attach(
'#webcam'
);
$(
"#btnCapture"
).click(
function
()
{
Webcam.snap(
function
(data_uri)
{
$(
"#imgCapture"
)[0].src = data_uri;
});
});
});
</script>
i want to store captured image by webcam store into folder how to do it with this code...?
Reply
Answers (
2
)
WCF Service - The service certificate is not provided
C# Crop Image Code