如何在网站上使用 Flash 界面从网络摄像头拍摄快照?

发布于 2024-07-29 16:12:20 字数 122 浏览 10 评论 0原文

如何编写/实现一个从网络摄像头获取图像(任何格式 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话难免假 2024-08-05 16:12:20

基本技术是首先使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文