码迷,mamicode.com
首页 > 移动开发 > 详细

android 自定义相机画面倒立解决方案

时间:2014-05-26 06:15:07      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:android   class   blog   c   code   a   

有部分手机的影像是倒立的,如何解决这个问题呢? 请看下面

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);
 }


@Override
	public void surfaceChanged(SurfaceHolder arg0, int arg1, int arg2, int arg3) {
		// TODO Auto-generated method stub
		<pre name="code" class="html">                setCameraDisplayOrientation(this,0,camera)
}




android 自定义相机画面倒立解决方案,布布扣,bubuko.com

android 自定义相机画面倒立解决方案

标签:android   class   blog   c   code   a   

原文地址:http://blog.csdn.net/u010152805/article/details/26694077

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!