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?
– Christian Felipe
@Christianfelipe to using HTML5 and javascript basically
– samuel silva
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; });
– samuel silva