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

android获取图片的旋转角度

时间:2014-08-20 22:47:13      阅读:329      评论:0      收藏:0      [点我收藏+]

标签:android   style   java   io   for   log   new   size   

public static int getExifOrientation(String filepath) {
    int degree = 0;
    ExifInterface exif = null;
    try {
        exif = new ExifInterface(filepath);
    } catch (IOException ex) {
    	Log.d(TAG, "cannot read exif" + ex);
    }
    if (exif != null) {
	int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, -1);
        if (orientation != -1) {
            switch(orientation) {
                case ExifInterface.ORIENTATION_ROTATE_90:
                    degree = 90;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_180:
                    degree = 180;
                    break;
                case ExifInterface.ORIENTATION_ROTATE_270:
                    degree = 270;
                    break;
            }
        }
    }
    return degree;
}


android获取图片的旋转角度

android获取图片的旋转角度,布布扣,bubuko.com

android获取图片的旋转角度

标签:android   style   java   io   for   log   new   size   

原文地址:http://blog.csdn.net/tao_zi7890/article/details/38712371

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