So I've managed to view my webcam in a AS3 app with this code:
package{
import flash.display.Sprite;
import flash.media.Camera;
import flash.media.Video;
public class WebCam extends Sprite
{
private var camara:Camera;
private var video:Video;
public function WebCam():void {
setupCamera();
}
private function setupCamera():void
{
video = new Video(640, 480);
camara = Camera.getCamera();
camara.setMode(640, 480, 30);
video.attachCamera(camara);
addChild(video);
}
}
}
But I'm wondering if there is anyway to take a picture of the current image from the webcam and save it somewhere locally?
EDIT:
@Sean Here is my current code:
var camara;
var video;
//Get the camera reference.
camara = Camera.getCamera();
//Create a video instance
video = new Video(640, 480);
video.attachCamera(camara);
addChild(video);
var bitmapData:BitmapData = new BitmapData(640, 480);
bitmapData.draw(video);
var encoder:JPGEncoder = new JPGEncoder();
var byteArray:ByteArray = encoder.encode(bitmapData);
navnavClick.addEventListener(MouseEvent.CLICK,function(){
var fileReference:FileReference = new FileReference();
fileReference.save(byteArray);
});
That all works well, but the output image is just a blank (white) image. I've included the JPGEncoder class too. Any ideas?