web-dev-qa-db-ja.com

Androidカメラの回転

Motorola Defy OS Android 2.1を使用しており、カメラプレビューを使用してアプリケーションを作成しています。問題は、カメラがAndroid 2.1のSamsungGalaxySで正常に動作することです。 、しかしモトローラではカメラは90度回転しています。私はこれをやろうとしました:

Parameters parameters = camera.getParameters();
parameters.setRotation(90);

しかし、それは機能していません。私はまだ解決策を見つけられませんでした。

8
Laura
if (this.getResources().getConfiguration().orientation != Configuration.ORIENTATION_LANDSCAPE) {
        camera.setDisplayOrientation(90);
        lp.height = previewSurfaceHeight;
        lp.width = (int) (previewSurfaceHeight / aspect);
    } else {
        camera.setDisplayOrientation(0);
        lp.width = previewSurfaceWidth;
        lp.height = (int) (previewSurfaceWidth / aspect);
    }
16
Peter

これに関する公式のサンプルコードがAndroid docs now(under setDisplayOrientation())にあります:

public static void setCameraDisplayOrientation(Activity activity,
        int cameraId, Android.hardware.Camera camera)
{
    Android.hardware.Camera.CameraInfo info = new Android.hardware.Camera.CameraInfo();
    Android.hardware.Camera.getCameraInfo(cameraId, info);
    int rotation = activity.getWindowManager().getDefaultDisplay().getRotation();
    int degrees = 0;
    switch (rotation)
    {
    case Surface.ROTATION_0:
        degrees = 0;
        break;
    case Surface.ROTATION_90:
        degrees = 90;
        break;
    case Surface.ROTATION_180:
        degrees = 180;
        break;
    case Surface.ROTATION_270:
        degrees = 270;
        break;
    }

    int result;
    if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT)
    {
        result = (info.orientation + degrees) % 360;
        result = (360 - result) % 360; // compensate the mirror
    }
    else
    { // back-facing
        result = (info.orientation - degrees + 360) % 360;
    }
    camera.setDisplayOrientation(result);
}
7
Timmmm

camera.setDisplayOrientation(int)は2.1では存在しません!

そして、このコードは機能するかもしれませんが、私のマイルストーン/ドロイドでは失敗します:(

Camera.Parameters parameters = camera.getParameters();
parameters.set("orientation", "portrait");
camera.setParameters(parameters);

詳細については、 http://code.google.com/p/Android/issues/detail?id=1193#c42 をご覧ください。

2
Masson

Android 1.6以上で動作するこのコードを見つけました(2.1を使用して動作し、回転せずに縦向きモードでプレビューを表示します)

public void surfaceCreated(SurfaceHolder holder){
        try{
            camera = Camera.open();
            setDisplayOrientation(camera, 90);
            camera.setPreviewDisplay(holder);
            camera.startPreview();
        }catch(IOException e){
            Log.d("CAMERA", e.getMessage());
        }

}

protected void setDisplayOrientation(Camera camera, int angle){
        Method downPolymorphic;
        try
        {
            downPolymorphic = camera.getClass().getMethod("setDisplayOrientation", new Class[] { int.class });
            if (downPolymorphic != null)
                downPolymorphic.invoke(camera, new Object[] { angle });
        }
        catch (Exception e1)
        {
        }
}

アクティビティには、AndroidManifest.xmlにAndroid:screenOrientation = "portrait"があります

http://code.google.com/p/Android/issues/detail?id=1193#c42

2
Williew
public static void setCameraDisplayOrientation(Activity activity,
                                               int cameraId,Android.hardware.Camera camera) {
    Android.hardware.Camera.CameraInfo info =
            new Android.hardware.Camera.CameraInfo();
    Android.hardware.Camera.getCameraInfo(cameraId, info);
    int rotation = activity.getWindowManager().getDefaultDisplay()
            .getRotation();
    int degrees = 0;
    switch (rotation) {
        case Surface.ROTATION_0: degrees = 0; break;
        case Surface.ROTATION_90: degrees = 90; break;
        case Surface.ROTATION_180: degrees = 180; break;
        case Surface.ROTATION_270: degrees = 270; break;
    }

    int result;
    if (info.facing == Camera.CameraInfo.CAMERA_FACING_FRONT) {
        result = (info.orientation + degrees) % 360;
        result = (360 - result) % 360;  // compensate the mirror
    } else {  // back-facing
        result = (info.orientation - degrees + 360) % 360;
    }
    camera.setDisplayOrientation(result);
}
1
Crossle Song

API2.2から2.1をサポートするための設定はできないと思います。 APIは現在のデバイスライブラリにありません。 APIレベル8をサポートするには、2.2に変更する必要があります。ちなみに、私はAPIレベル7も使用しようとしています。

Parameters parameters = camera.getParameters();
parameters.setRotation(90);

この機能は、Samsung Galaxy TabでもNexus1でうまく機能します。 Samsung GalaxyTabはOS2.2.0を使用し、NexusOneはOS2.2.1を使用します。 APIレベル8を使おうとすると:

camera.setDisplayOrientation(90);

どちらもうまく機能します。したがって、Android OS 2.2.1で使用すると、APIレベル7に問題があると思います。

0
None