什么是Exif
可交换图像文件格式,简称为Exif(Exchangeable image file format)。是专门为数码相机的照片设定的,可以记录数码照片的属性信息和拍摄数据。
exif中包含图片的方向信息,这个是本文讨论的重点。exif orientation详细介绍
链接中的orientation value,0th row,0th column的关系:

可以用手机拍摄一张图片,在这个网站查看exif。
Camera Sensor方向
屏幕的自然方向和相机的图像传感器方向一致。Android Image Sensor取景方向如图所示:

Android Camera Sensor采集图像数据都是这个视角。所以,手机旋转90°拍摄的图片放在电脑上显示的图像并不是正的。
为什么手机相册显示的图片却是正的?
因为相册app有对图片进行处理。简单来说原理就是,获取exif中的orientation信息,然后将图片旋转相应角度。
ImageView 支持exif orientation
获取图片exif,然后取得旋转角度,将图片旋转相应角度后给ImageView显示。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| private class DisplayTask implements Runnable { @Override public void run() { try { InputStream in = getAssets().open("pic.jpg"); BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; BitmapFactory.decodeStream(getStream(in), null, options); options.inSampleSize = caculateInSampleSize(options, imageView.getMeasuredWidth(), imageView.getMeasuredHeight()); options.inJustDecodeBounds = false; Bitmap bmp = BitmapFactory.decodeStream(getStream(in), null, options);
int degree=0; switch (getImageOrientation(getStream(in))){ case android.media.ExifInterface.ORIENTATION_ROTATE_90: degree=90; break; case android.media.ExifInterface.ORIENTATION_ROTATE_180: degree=180; break; case android.media.ExifInterface.ORIENTATION_ROTATE_270: degree=270; break; } Matrix matrix=new Matrix(); matrix.postRotate(degree); Bitmap finalBmp=Bitmap.createBitmap(bmp,0,0,bmp.getWidth(),bmp.getHeight(),matrix,true); matrix.reset(); matrix.postTranslate((imageView.getMeasuredWidth()-finalBmp.getWidth())/2,(imageView.getMeasuredHeight()-finalBmp.getHeight())/2); imageView.setImageMatrix(matrix); imageView.setImageBitmap(finalBmp); } catch (IOException e) { e.printStackTrace(); } } }
|
完整代码
下载链接