如何使用前置摄像头使用FLEX4(how to use front camera using fle

2019-09-17 07:21发布

我已经使用Flex 4的问题开发了Android手机简单的摄像头应用程序,当我运行该应用程序,它使用的后置摄像头。 它不使用前置摄像头。 我怎样才能改变相机。 我需要使用前侧相机这个应用程序,请帮帮我。

var camera:Camera = Camera.getCamera(cameraIndex.toString());
if (camera)
{
    var ui: UIComponent = new UIComponent();
    var localVideoDisplay: Video = new Video(180, 135);
    localVideoDisplay.attachCamera(camera);
    ui.addChild(localVideoDisplay);                     
    cameraGroup.addChild(ui);
}

这是我在我的应用程序使用的代码。

Answer 1:

尝试

function getCamera( position:String ):Camera
{
    var camera:Camera;
    var cameraCount:uint = Camera.names.length;
    for ( var i:uint = 0; i < cameraCount; ++i )
    {
        camera = Camera.getCamera( String(i) );
        if ( camera.position == position ) 
            return camera;
    }
    return Camera.getCamera();
}

使用getCamera(CameraPosition.FRONT)



文章来源: how to use front camera using flex4