Android:位图图像在预览中反转?
Posted
技术标签:
【中文标题】Android:位图图像在预览中反转?【英文标题】:Android: Bitmap image get reversed in Preview? 【发布时间】:2012-06-29 17:23:00 【问题描述】:我用 camera.take picture 拍照,然后将这些数据输入到照片中并转换为位图。然后我在 imageview 中显示。
当我以横向模式拍照时,一切正常。如果我以纵向模式拍照,则预览图像会反转。请帮我解决这个问题。
提前谢谢....
【问题讨论】:
【参考方案1】:这个link 完全回应了你提到的内容
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);
【讨论】:
感谢您的快速回答...但这适用于 android 4... 但我在 android 2.1 上工作... @Siva 如果您想使用低 api,您可以使用应用程序的向后兼容性。 Android 是开源的,您可以获取该功能的源代码并将其作为库添加到您的项目中以上是关于Android:位图图像在预览中反转?的主要内容,如果未能解决你的问题,请参考以下文章