androID应用里使用相机图片时必须要考虑的一个问题就是图片朝向,只有判断对朝向才能调整图片从而更好的展现。本文将介绍一种通过ExifInterface判断图片朝向的方法!
上代码:
/** * * 利用给定路径下的图片设置ImageVIEw * * @param imgPath 手机图片文件路径 * @param imgVIEw 需要设置的ImageVIEw */public voID setimg(String imgPath,ImageVIEw imgVIEw) { file file = new file(imgPath); if (file.exists() && file.canRead()) { // -------1.图片缩放-------- // 手机屏幕信息 displayMetrics metric = new displayMetrics(); getwindowManager().getDefaultdisplay().getMetrics(metric); int DW = metric.wIDthPixels; // 屏幕宽 int dh = metric.heightPixels; // 屏幕高 // 加载图像,只是为了获取尺寸 BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; // 设置之后可以获取尺寸信息 Bitmap bitmap = BitmapFactory.decodefile(imgPath,options); // 计算水平和垂直缩放系数 int heightRatio = (int) Math.ceil(options.outHeight / (float) dh); int wIDthRatio = (int) Math.ceil(options.outWIDth / (float) DW); // 判断哪个大 if (heightRatio > 1 && wIDthRatio > 1) { if (heightRatio > wIDthRatio) { options.inSampleSize = heightRatio; } else { options.inSampleSize = wIDthRatio; } } // 图片缩放 options.inJustDecodeBounds = false; bitmap = BitmapFactory.decodefile(imgPath,options); // -------2.判断图片朝向-------- try { ExifInterface exif = new ExifInterface(imgPath); int degree = 0; // 图片旋转角度 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; default: break; } } } if (degree != 0) { // 图片需要旋转 int wIDth = bitmap.getWIDth(); int height = bitmap.getHeight(); Matrix matrix = new Matrix(); matrix.preRotate(degree); Bitmap mRotateBitmap = Bitmap.createBitmap(bitmap,wIDth,height,matrix,true); imgVIEw.setimageBitmap(mRotateBitmap); } else { imgVIEw.setimageBitmap(bitmap); } } catch (IOException e) { } } }
本代码包含两大功能:
1. 图片缩放:原始图片一般比较大,经过缩小才能使用;
2. 图片旋转:由于用户拍照时手机角度不同,所得照片可能需要旋转。
以上这篇androID判断相机图片朝向的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的android判断相机图片朝向的简单方法全部内容,希望文章能够帮你解决android判断相机图片朝向的简单方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)