要获取相机参考,我这样做:
@Override
public void surfaceCreated(SurfaceHolder holder) {
Log.d(TAG, "Surface created!");
mCamera = Camera.open();
if (mCamera == null) {
// try to open front facing camera
try {
mCamera = Camera.open(0);
} catch (RuntimeException e) {
Toast.makeText(getApplicationContext(),
"No camera available!", Toast.LENGTH_LONG).show();
}
}
try {
mCamera.setPreviewDisplay(mCameraHolder);
setCameraDisplayOrientation(CameraActivity.this, 0, mCamera);
} catch (Exception e) {
e.printStackTrace();
if (mCamera != null)
mCamera.release();
mCamera = null;
}
}
setCameraDisplayOrientation就是这个(我在stackoverflow上找到的地方):
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);
}
当我用Nexus 4拍照时,它的方向正确。当我用我的Nexus 7(只有一个前置摄像头)进行试镜时,它是镜像的(倒置)(实际上即使没有这段代码也是如此,所以我猜它没什么用。)。
有没有可靠的方法来获取相机并使其工作?我在谷歌和Stackoverflow上搜索过,但到目前为止找不到任何有用的东西。
答案 0 :(得分:1)
这是我发现使用nexus 7和我测试的大多数其他设备的解决方案,如HTC One M8,联想瑜伽,Lg G4 Nexus 4,Note 4和Oneplus One。
camera.setDisplayOrientation(90);
但是,此解决方案不适用于翻转预览的Nexus 6,因此如果有人有更好的解决方案,请分享。