jquery 网络摄像头插件与 asp.net mvc 3
有人得到这个http://www.xarg.org/project/jquery-webcam-plugin/,与 aps.net mvc 3 一起使用吗?我似乎无法使用 WebImage 类或 BitmapImage 解码图像。
我已经厌倦了使用 Silverlight 来完成此操作,但我真的不确定如何上传图像。我不需要保存图像,我只想处理它,我真正想做的是通过网络应用程序读取条形码。
我似乎找不到将图像从 Silverlight 或 flash 上传到我的 MVC 应用程序的良好指南。
提前致谢。
has anyone gotten this http://www.xarg.org/project/jquery-webcam-plugin/, to work with aps.net mvc 3? I can't seem to decode the image, using the WebImage class or BitmapImage.
I've tired to do this with Silverlight, but I'm really unsure on how to upload the image. I do not need to save the image, I just want to process it, what im really looking to do is read a bar-code via web app.
I just can't seem to find a good guide to uploading an image from Silverlight or flash to my MVC app.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文档包含许多示例。所需要的只是阅读和尝试。
因此,您的
Index.cshtml
视图可能如下所示,使用浏览器的 HTML5 canvas 元素将来自网络摄像头的原始图像数据编码为 PNG 图像,该图像将使用 AJAX 请求发送到服务器:和您的家庭控制器:
The documentation contains many examples. All that's needed is to read and try out.
So here's how your
Index.cshtml
view might look like using the browser's HTML5 canvas element to encode the raw image data coming from the webcam into a PNG image that will be sent to the server using an AJAX request:and your Home controller:
您可以尝试 www.scriptcam.com,有关于此 jquery 插件的大量文档。
You might give www.scriptcam.com a try, there is extensive documentation available on this jquery plugin.