本文介绍了如何在mvc 4剃须刀中使用网络摄像头拍摄照片的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 Hello Everyone, 我试图在mvc 4 razor中使用网络摄像头捕获图像,我能够使用jquery捕获相同但使用它时遇到一些问题。 我的代码如下:Hello Everyone, I was trying to capture image using webcam in mvc 4 razor, i was able to capture same using jquery but having some problem in using that. my code is below: <script type="text/javascript"> $(".clsCam").click(function (e) { webcam.set_api_url('@Url.Action("CapturePhoto", "DataExport")'); webcam.set_swf_url('@Url.Content("~/Scripts/jpegcam/htdocs/webcam.swf")'); webcam.set_quality(100); webcam.set_shutter_sound(false, '@Url.Content("~/Scripts/jpegcam/htdocs/shutter.mp3")'); webcam.set_hook('onComplete', 'upload_complete'); document.write(webcam.get_html(200, 150)); function upload() { webcam.freeze(); webcam.upload(); } function upload_complete(response) { var json = jsonParse(response); if (json.Redirect) { window.location.replace(json.Redirect); } else if (json.Error) { Notifier.Error('Error', json.Error.Message); webcam.reset(); } else { Notifier.Error('Error', 'An unknown error has occurred.'); webcam.reset(); } } });</script> 但我无法修复我需要的frame / div中的网络摄像头屏幕。 有没有其他方法可以在mvc 4剃须刀中捕捉图像,可以根据我的需要进行定制。 感谢你。but m not able to fix that webcam screen in my frame/div where i need.Is there any other way to capture image in mvc 4 razor which can be customized as per my need.thanking you.推荐答案 但我无法修复我需要的frame / div中的网络摄像头屏幕。 有没有其他方法可以在mvc 4剃须刀中捕捉图像,可以根据我的需要进行定制。 感谢你。but m not able to fix that webcam screen in my frame/div where i need.Is there any other way to capture image in mvc 4 razor which can be customized as per my need.thanking you. 这篇关于如何在mvc 4剃须刀中使用网络摄像头拍摄照片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-27 04:33