Android 调用摄像头拍照并对照片进行裁剪和压缩

本文介绍 Android 调用摄像头拍照,并对照片进行裁剪和压缩,文中给出了主要步骤和关键代码。

调用摄像头拍照,对拍摄照片进行裁剪,代码如下。

  1. /**
  2. * 调用摄像头拍照,对拍摄照片进行裁剪
  3. */
  4. private void showCameraAction() {
  5. // 跳转到系统照相机
  6. Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
  7. if (cameraIntent.resolveActivity(this.getPackageManager()) != null) {
  8. // 设置系统相机拍照后的输出路径
  9. // 创建临时文件
  10. tempFile = new File(Constants.FILE_NAME); //FileUtils.createTmpFile(this, Constants.FILE_NAME);
  11. cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(tempFile));
  12. startActivityForResult(cameraIntent, CAMERA_INTENT_REQUEST);
  13. } else {
  14. Toast.makeText(this, R.string.msg_no_camera, Toast.LENGTH_SHORT).show();
  15. }
  16. }

对拍摄照片进行裁剪,代码如下。

  1. /**
  2. * 对拍摄照片进行裁剪
  3. */
  4. private void crop() {
  5. Intent intent = new Intent("com.android.camera.action.CROP");
  6. intent.setDataAndType(Uri.fromFile(tempFile), "image/*");
  7. intent.putExtra("crop", "true"); // 这里必须设置为true拍照之后才会进行裁剪操作
  8. // 1.宽高和比例都不设置时,裁剪框可以自行调整(比例和大小都可以随意调整)
  9. // 2.只设置裁剪框宽高比(aspect)后,裁剪框比例固定不可调整,只能调整大小
  10. // 3.裁剪后生成图片宽高(output)的设置和裁剪框无关,只决定最终生成图片大小
  11. // 4.裁剪框宽高比例(aspect)可以和裁剪后生成图片比例(output)不同,此时, 会以裁剪框的宽为准,
  12. // 按照裁剪宽高比例生成一个图片,该图和框选部分可能不同,不同的情况可能是截取框选的一部分,
  13. // 也可能超出框选部分, 向下延伸补足
  14. // aspectX aspectY 是裁剪框宽高的比例
  15. intent.putExtra("aspectX", 358);
  16. intent.putExtra("aspectY", 441);
  17. // outputX outputY 是裁剪后生成图片的宽高
  18. intent.putExtra("outputX", 358);
  19. intent.putExtra("outputY", 441);
  20. // return-data为true时,会直接返回bitmap数据,但是大图裁剪时会出现问题,推荐下面为false时的方式
  21. // return-data为false时,不会返回bitmap,但需要指定一个MediaStore.EXTRA_OUTPUT保存图片uri
  22. intent.putExtra("return-data", false);
  23. intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(tempFile));
  24. startActivityForResult(intent, ImageSelector.IMAGE_CROP_CODE);
  25. }
  1. @Override
  2. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  3. super.onActivityResult(requestCode, resultCode, data);
  4. if (requestCode == CAMERA_INTENT_REQUEST) {
  5. crop();
  6. }
  7. if (requestCode == ImageSelector.IMAGE_CROP_CODE) {
  8. if (tempFile.exists()) {
  9. //bitmap = BitmapFactory.decodeFile(tempFile.toString());
  10. bitmap = ImageUtil.getLocalThumbImg(tempFile.toString(), 30);
  11. im_photo.setImageBitmap(bitmap);
  12. }
  13. }
  14. }

得到本地图片旋转压缩,图片质量压缩,代码如下。

  1. /**
  2. * 得到本地图片旋转压缩
  3. * @param path
  4. * @param size
  5. * @return
  6. */
  7. public static Bitmap getLocalThumbImg(String path, int size) {
  8. BitmapFactory.Options newOpts = new BitmapFactory.Options();
  9. // 开始读入图片,此时把options.inJustDecodeBounds 设回true了
  10. newOpts.inJustDecodeBounds = true;
  11. Bitmap bitmap = BitmapFactory.decodeFile(path, newOpts); // 此时返回bm为空
  12. newOpts.inJustDecodeBounds = false;
  13. newOpts.inSampleSize = 1; // 设置缩放比例1表示不缩放
  14. // 重新读入图片,注意此时已经把options.inJustDecodeBounds 设回false了
  15. bitmap = BitmapFactory.decodeFile(path, newOpts);
  16. bitmap = compressImage(bitmap, size, "jpg"); // 压缩好比例大小后再进行质量压缩
  17. int degree = readPictureDegree(path);
  18. bitmap = rotaingImageView(degree, bitmap);
  19. return bitmap;
  20. }
  21. /**
  22. * 图片质量压缩
  23. *
  24. * @param image
  25. * @return
  26. * @size 图片大小(kb)
  27. */
  28. public static Bitmap compressImage(Bitmap image, int size, String imageType) {
  29. try {
  30. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  31. if (imageType.equalsIgnoreCase("png")) {
  32. image.compress(Bitmap.CompressFormat.PNG, 100, baos);
  33. } else {
  34. // 质量压缩方法,这里100表示不压缩,把压缩后的数据存放到baos中
  35. image.compress(Bitmap.CompressFormat.JPEG, 100, baos);
  36. }
  37. int options = 100;
  38. // 循环判断如果压缩后图片是否大于100kb,大于继续压缩
  39. while (baos.toByteArray().length / 1024 > size) {
  40. baos.reset(); // 重置baos即清空baos
  41. if (imageType.equalsIgnoreCase("png")) {
  42. image.compress(Bitmap.CompressFormat.PNG, options, baos);
  43. } else {
  44. // 这里压缩options%,把压缩后的数据存放到baos中
  45. image.compress(Bitmap.CompressFormat.JPEG, options, baos);
  46. }
  47. options -= 10; // 每次都减少10
  48. }
  49. FileOutputStream out = new FileOutputStream(new File(Constants.FILE_NAME));
  50. image.compress(Bitmap.CompressFormat.JPEG, options, out);
  51. // 把压缩后的数据baos存放到ByteArrayInputStream中
  52. ByteArrayInputStream isBm = new ByteArrayInputStream(baos.toByteArray());
  53. // 把ByteArrayInputStream数据生成图片
  54. Bitmap bitmap = BitmapFactory.decodeStream(isBm, null, null);
  55. return bitmap;
  56. } catch (Exception e) {
  57. return null;
  58. }
  59. }
  60. /**
  61. * 读取图片属性:旋转的角度
  62. *
  63. * @param path 图片绝对路径
  64. * @return degree旋转的角度
  65. */
  66. public static int readPictureDegree(String path) {
  67. int degree = 0;
  68. try {
  69. ExifInterface exifInterface = new ExifInterface(path);
  70. int orientation = exifInterface.getAttributeInt(
  71. ExifInterface.TAG_ORIENTATION,
  72. ExifInterface.ORIENTATION_NORMAL);
  73. switch (orientation) {
  74. case ExifInterface.ORIENTATION_ROTATE_90:
  75. degree = 90;
  76. break;
  77. case ExifInterface.ORIENTATION_ROTATE_180:
  78. degree = 180;
  79. break;
  80. case ExifInterface.ORIENTATION_ROTATE_270:
  81. degree = 270;
  82. break;
  83. }
  84. } catch (IOException e) {
  85. e.printStackTrace();
  86. }
  87. return degree;
  88. }
  89. /**
  90. * 旋转图片
  91. *
  92. * @param angle
  93. * @param bitmap
  94. * @return Bitmap
  95. */
  96. public static Bitmap rotaingImageView(int angle, Bitmap bitmap) {
  97. if (bitmap == null)
  98. return null;
  99. // 旋转图片 动作
  100. Matrix matrix = new Matrix();
  101. matrix.postRotate(angle);
  102. // 创建新的图片
  103. Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0,
  104. bitmap.getWidth(), bitmap.getHeight(), matrix, true);
  105. return resizedBitmap;
  106. }

(完)