如何将网络摄像头与网页集成
我正在使用 Java(Servlet、JSP)开发 Web 应用程序。在 JSP 页面中,我想向用户显示网络摄像头窗口。当客户单击“捕获”按钮时,我应该能够捕获图像并将其存储在某个地方。
我做了很多研究,但找不到满意的解决方案。
I am developing a web application using Java (Servlet, JSP). In a JSP page, I want to show the web camera window to the user. When client clicks a button "Capture", then I should be able to capture the image and store it in some place.
I have done a lot of research, but could not find a satisfactory solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这就是 Applet 的魅力所在。Facebook 有一个 Applet,可以连接到 PC 摄像头并进行捕获。
That's where the beauty of Applet comes in. Facebook has an Applet that connects to the PC camera and does capturing.
该站点提供了一个很好的 JSP 示例:
http:// /thenerdinme.com/do-it-yourself/how-to-take-screenshots-with-java/
This site provides a good example in JSP:
http://thenerdinme.com/do-it-yourself/how-to-take-screenshots-with-java/
为什么不使用像 flex 这样能提供更好支持的东西呢?
Why do not use something like flex which provides better support for this?