我已经编写了足够的代码来预览Flash中的网络摄像头视频。
现在,我想以10秒的间隔捕捉图像。
这是我的代码:
import flash.display.BitmapData
import flash.geom.Matrix
import com.adobe.images.JPGEncoder;
import flash.net.FileReference;
//get the default camera
//change your Default camera using the Flash Player Settings.
cam=Camera.get()
//this event is called whenever permission to access the local camera, is accepted or denied by the user
cam.onStatus=function(e)
{
//if we are given permission
if(e.code == "Camera.Unmuted")
{
//start the application
initialize()
}
else
{
System.showSettings(3)
}
}
var snapshot:BitmapData=new BitmapData(cam._width,cam._height);
function takeSnapshot()
{
snapshot.draw(cam,new Matrix());
}
//if there are no Cameras
if(cam == null)
{
System.showSettings(3)
}
else
{
cam.setMode(1024, 768, 30);
cam.setQuality(10000,0);
output.attachVideo(cam);
setInterval(this,"takeSnapshot",1000);
}
请帮忙吗?
我是一个全新的Flash新手。
谢谢, 仙人。
答案 0 :(得分:1)
如果要将其保存到用户的磁盘,请记住,您无法自动执行此操作,因为出于安全原因,FileReference类的save()方法只能在特定用户操作后使用(单击, mousedown,我想按键)。获得bitmapdata后,您需要http://code.google.com/p/as3corelib/中的jpeg编码器对img进行编码并将其保存到磁盘。像这样:
var fileBrowser:FileReference = new FileReference();
var bd:BitmapData = new BitmapData(imageContainer.width, imageContainer.height, false, 0xFFFFFF);
bd.draw(imageContainer);
var encoder:JPGEncoder = new JPGEncoder(35);
var bytes:ByteArray = encoder.encode(bd);
fileBrowser.save(bytes);
请在此处查看FileReference文档http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/net/FileReference.html,以便了解您还可以使用它做什么。