android 相机,图片处理

调用系统相机:

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
		File dir = new File(dirPath);
		image_name = System.currentTimeMillis() + ".png";
		if (!dir.exists()) {
			boolean iscreat = dir.mkdirs();// 创建照片的存储目录
			MyLog.e(TAG, "" + iscreat);
		}
		intent.putExtra(MediaStore.EXTRA_OUTPUT,
				Uri.fromFile(new File(dir, image_name)));
		startActivityForResult(intent, REQUEST_CODE_TAKE_PICTURE);


拍照返回:


@Override
	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
		super.onActivityResult(requestCode, resultCode, data);
		MyLog.v(TAG, "resultCode=" + resultCode);
		if (resultCode == Activity.RESULT_OK) {
			if (data != null) {
				MyLog.v(TAG, "item_id:" + data.getIntExtra("item_id", -1));
			}
			if (requestCode == REQUEST_CODE_TAKE_PICTURE) {// 拍照返回
				

			}
		}
	}


图片处理:拍照后的图片有的手机是选择90度的而且图片比较大容易造成内存溢出

public static Bitmap getSmallImage(String pathName, Context context) {

		MyLog.v(TAG, "getImage");
		BitmapFactory.Options options = new BitmapFactory.Options();
		options.inTempStorage = new byte[1024 * 16];//设置图片大小16K
		options.inJustDecodeBounds = true;
		// 获取这个图片的宽和高
		Bitmap bitmap = BitmapFactory.decodeFile(pathName, options); // 此时返回bm为空
		int maxH = SharePreferenceMng.getInstance(context).getScreenWidth() / 4;
		// 计算缩放比
		int be = (int) (options.outHeight / (float) maxH);
		int ys = options.outHeight % maxH;// 求余数
		float fe = ys / (float) maxH;
		if (fe >= 0.5)
			be = be + 1;
		if (be <= 0)
			be = 1;
		options.inSampleSize = be;

		// 重新读入图片,注意这次要把options.inJustDecodeBounds 设为 false
		options.inJustDecodeBounds = false;
		bitmap = BitmapFactory.decodeFile(pathName, options);

		ExifInterface exifInterface;
		try {
			exifInterface = new ExifInterface(pathName);
			int tag = exifInterface.getAttributeInt(
					ExifInterface.TAG_ORIENTATION, -1);
			if (tag == ExifInterface.ORIENTATION_ROTATE_90) {// 如果是旋转地图片则先旋转,有的相机默认旋转90度
				Matrix matrix = new Matrix();
				matrix.reset();
				matrix.setRotate(90);
				bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(),
						bitmap.getHeight(), matrix, true);
			}
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}

		return bitmap;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

C_see

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值