Use webcam on the web with the highest resolution possible

Asked

Viewed 96 times

0

I am developing a simple application to capture photos through a web cam, the part to capture the photo and save ta working quietly, however I am having resolution problems. When I use a software installed on the pc, the image is of great quality, when I go to the browser this quality all goes away.

I wonder if:

Browsers currently have this same resolution limit?

Any help, suggestion will be welcome.

  • Well, maybe the desktop software does an image optimization by applying filters. But how are you capturing the image of the web cam and playing in the browser?

  • @Christianfelipe to using HTML5 and javascript basically

  • Document.getElementById("capture Foto"). addeventlistener("click", Function() context.drawImage(video, 0, 0, 640, 480); var img = Document.getElementById("canvas"). toDataURL("image/jpeg"); Document.getElementById("imagemCaptured"). src = img; });

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.