如何在网站上使用 Flash 界面从网络摄像头拍摄快照?
如何编写/实现一个从网络摄像头获取图像(任何格式 png、jpg)并将其保存为图像的程序?
我需要在网络应用程序中使用 Flash 支持来实现它吗?
有没有关于如何构建这样的应用程序的教程。
How to write/implement a program which takes images(any format png,jpg) from webcam and save it as images?
I need to implement that in webapplication, with Flash spport?
is there any tutorial for how to build an application like this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本技术是首先使用 Camera.get 抓取用户的网络摄像头,然后将其附加到 Video 对象。 然后,您创建一个 BitmapData 对象并使用它的绘制方法来捕获视频的帧。 最后,您使用 AS3CoreLIb 中的 JPGEncoder 类(只需 google 即可)将 BitmapData 对象转换为存储在 ByteArray 中的 JPG。
The basic technique is to first use Camera.get to grab the users webcam and then attach it to a Video object. Then, you create a BitmapData object and use it's draw method to capture a frame of the video. Finally you use the JPGEncoder class that's part of AS3CoreLIb (just google it) to convert the BitmapData object into a JPG stored in a ByteArray.