ExifInterface 介绍

   在android多媒体开发中,ExifInterface(exif exchangeable image file) ,这个接口提供了图片文件的旋转,gps,时间等信息。

 Bitmap bitmap =null;
        int scallType = 0;
        try { 
            ExifInterface exifInterface = new ExifInterface(file.getPath()); 
            int result = exifInterface.getAttributeInt( 
                    ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED); 
            int rotate = 0; 
            switch(result) { 
            case ExifInterface.ORIENTATION_ROTATE_90: 
                rotate = 90; 
                break; 
            case ExifInterface.ORIENTATION_ROTATE_180: 
                rotate = 180; 
                break; 
            case ExifInterface.ORIENTATION_ROTATE_270: 
                rotate = 270; 
                break; 
            default: 
                break; 
            } 
            BitmapFactory.Options options = new BitmapFactory.Options();
            options.inPreferredConfig = Bitmap.Config.RGB_565;
            // 初めのデコードはサイズ取得のみ
            options.inJustDecodeBounds = true;
            BitmapFactory.decodeFile(filePath, options);
            if (options.outWidth < 0 || options.outHeight < 0) {
                return null;
            }
             
            scallType = genScallType(context, options);
            
            options.inJustDecodeBounds = false;
            bitmap=  BitmapFactory.decodeFile(filePath, options);
            if(rotate > 0) { 
                Matrix matrix = new Matrix(); 
                matrix.setRotate(rotate); 
                Bitmap rotateBitmap = Bitmap.createBitmap( 
                        bitmap, 0, 0, options.outWidth, options.outHeight, matrix, true); 
                if(rotateBitmap != null) { 
                    bitmap.recycle(); 
                    bitmap = rotateBitmap; 
                } 
            } 
        } catch (IOException e) { 
            e.printStackTrace(); 
        } 


 

public int getAttributeInt (String tag, int defaultValue)
Since: API Level 5

Returns the integer value of the specified tag. If there is no such tag in the JPEG file or the value cannot be parsed as integer, return defaultValue.

(在指定的tag后,返回一个int类型的值,这里传入的是ExifInterface.TAG_ORIENTATION,所以会返回一个角度的int类型的值,当我们用android 平板电脑,或者手机横屏拍照片时并希望把它作为背景设置在所在的应用背景,而且不希望背景会产生旋转90度得现象)
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值