发布于 2017-03-18 03:23:27 | 212 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的精品教程,程序狗速度看过来!

Android移动端操作系统

Android是一种基于Linux的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由Google公司和开放手机联盟领导及开发。尚未有统一中文名称,中国大陆地区较多人使用“安卓”或“安致”。


下面小编就为大家带来一篇android判断相机图片朝向的简单方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

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, 0, 0,
							width, height, matrix, true);

					imgView.setImageBitmap(mRotateBitmap);
				} else {
					imgView.setImageBitmap(bitmap);
				}
			} catch (IOException e) {
			}
		}
	}

本代码包含两大功能:

1. 图片缩放:原始图片一般比较大,经过缩小才能使用;

2. 图片旋转:由于用户拍照时手机角度不同,所得照片可能需要旋转。

以上这篇android判断相机图片朝向的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持PHPERZ。



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务