我正在构建一个使用相机功能的Android应用程序。我遇到的问题是我从前置摄像头获得的图像数据(byte [])在我的三星s7和nexus手机上颠倒了。它在预览中显示正确,但在我按原样保存数据然后在图库中显示图像后,它们都是颠倒的。我知道我可以在保存之前翻转图像数据,但我已经在运行4.4(kitkat)的蓝色C 5.0 HD上测试了代码,并且该手机上的图像数据以正确的方式进行。因此,翻动图像的alwyas将导致其他设备上的错误。我被告知问题是因为当新的三星和nexus手机被制造出来时,前置摄像头是颠倒的,以节省空间。我不确定这是否正确,但如果是这样,如果我翻转所有图像,它会弄乱具有相机正确方向的手机。那么在保存图像之前有没有办法检测图像数据的方向?
以下是我正在使用的代码:
mCamera.takePicture(null, null, mPicture);
回调:
private final Camera.PictureCallback mPictureCallback = new Camera.PictureCallback() {
@Override
public void onPictureTaken(byte[] data, Camera camera) {
processCameraCallback(data);
}
};
处理数据:
public void processCameraCallback(byte[] data) {
confirmPhoto(true);
//Make a new empty picture file
try {
pictureFile = Utils.createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File
Log.e(TAG, "Failed to create photo file: " + ex.toString());
confirmPhoto(false);
return;
}
//Write the file to the storage
try {
FileOutputStream fos;
if (pictureFile != null) {
fos = new FileOutputStream(pictureFile);
fos.write(data);
fos.close();
}
} catch (FileNotFoundException e) {
Log.d(TAG, "File not found: " + e.getMessage());
confirmPhoto(false);
return;
} catch (IOException e) {
Log.d(TAG, "Error accessing file: " + e.getMessage());
confirmPhoto(false);
return;
}
}
答案 0 :(得分:3)
使用此代码调整相机方向:
private int detectCameraDisplayOrientation(Activity activity,
Camera.CameraInfo 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;
}
return result;
}
这是来自相机api样本,可在nexus 5x上正常工作。(带倒置相机)
之后就打电话了
camera.setDisplayOrientation(displayOrientation);
它会正确保存图片。