Android拍照裁剪图片

 更新时间:2015年12月29日 14:48:26   投稿:mrr  
智能手机像素非常高,完全可以当相机使用,下面一段代码给大家分享了android拍照裁剪图片的功能,对android拍照裁剪图片相关知识感兴趣的朋友一起学习吧

下面是效果图,看看是不是亲想要的效果图,如果是,这段代码你就可以参考下了,但是要灵活运用,根据需求做相应的改动。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical" >
 <Button
  android:id="@+id/take_photo"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="Take Photo" />
 <Button
  android:id="@+id/get_photo"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="get Photo" />
 <ImageView
  android:id="@+id/picture"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center_horizontal" />
</LinearLayout>

package com.example.choosepictest;

import java.io.File;
import java.io.IOException;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends Activity implements OnClickListener {
 public static final int TAKE_PHOTO = 1;
 public static final int CROP_PHOTO = 2;
 public static final int GET_PHOTO = 3;
 private Button takePhoto;
 private Button getPhoto;
 private ImageView picture;
 private Uri headImgUri;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  takePhoto = (Button) findViewById(R.id.take_photo);
  getPhoto = (Button) findViewById(R.id.get_photo);
  picture = (ImageView) findViewById(R.id.picture);
  takePhoto.setOnClickListener(this);
  getPhoto.setOnClickListener(this);
 }
 @Override
 public void onClick(View v) {
  switch (v.getId()) {
  case R.id.take_photo:
   takePhoto();
   break;
  case R.id.get_photo:
   getPhoto();
   break;
  default:
   break;
  }
 }
 // 拍照
 private void takePhoto() {
  File appDir = new File(Environment.getExternalStorageDirectory(),
    "/etoury/picCache");
  if (!appDir.exists()) {
   appDir.mkdir();
  }
  String fileName = "user_head" + ".jpg";
  File outputImage = new File(appDir, fileName);
  try {
   if (outputImage.exists()) {
    outputImage.delete();
   }
   outputImage.createNewFile();
  } catch (IOException e) {
   e.printStackTrace();
  }
  headImgUri = Uri.fromFile(outputImage);
  Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
  intent.putExtra(MediaStore.EXTRA_OUTPUT, headImgUri);
  startActivityForResult(intent, TAKE_PHOTO);
 }
 // 定向到图片库
 private void getPhoto() {
  Intent intent = new Intent(Intent.ACTION_PICK,
    android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
  startActivityForResult(intent, GET_PHOTO);
 }
 /**
  * 裁剪
  */
 private void crop(Uri uri) {
  // 裁剪图片意图
  Intent intent = new Intent("com.android.camera.action.CROP");
  intent.setDataAndType(uri, "image/*");
  // 下面这个crop=true是设置在开启的Intent中设置显示的VIEW可裁剪
  intent.putExtra("crop", "true");
  intent.putExtra("scale", true);// 去黑边
  // 裁剪框的比例,1:1
  intent.putExtra("aspectX", 1);// 输出是X方向的比例
  intent.putExtra("aspectY", 1);
  // 裁剪后输出图片的尺寸大小,不能太大500程序崩溃
  intent.putExtra("outputX", 256);
  intent.putExtra("outputY", 256);
  // 图片格式
  /* intent.putExtra("outputFormat", "JPEG"); */
  intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
  // intent.putExtra("noFaceDetection", true);// 取消人脸识别
  intent.putExtra("return-data", true);// true:返回uri,false:不返回uri
  // 同一个地址下 裁剪的图片覆盖拍照的图片
  intent.putExtra(MediaStore.EXTRA_OUTPUT, headImgUri);
  startActivityForResult(intent, CROP_PHOTO);
 }
 @Override
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  switch (requestCode) {
  case GET_PHOTO:
   if (resultCode == RESULT_OK) {
    crop(data.getData());
   }
   break;
  case TAKE_PHOTO:
   if (resultCode == RESULT_OK) {
    crop(headImgUri);
   }
   break;
  case CROP_PHOTO:
   if (resultCode == RESULT_OK) {
    Bitmap cropbitmap = data.getParcelableExtra("data");
    picture.setImageBitmap(cropbitmap);
   }
   break;
  default:
   break;
  }
 }
}

总结:

1.  拍照返回一张图片,可以是全尺寸的图片

2.  拍照返回图片的地址问题,一个目录下的一个文件

3. 裁剪的图片的地址, 覆盖了全尺寸图片的地址

4. 相册intent 返回的是一个uir , 不是string

5. 裁剪的图片,不能覆盖相册返回的uri(一定注意)

相关文章

  • Android中用onSaveInstanceState保存Fragment状态的方法

    Android中用onSaveInstanceState保存Fragment状态的方法

    这篇文章主要介绍了Android中用onSaveInstanceState保存Fragment状态的方法,onSaveInstanceState可以将数据保存在Fragment或Activity中,需要的朋友可以参考下
    2016-04-04
  • Android使用EditText小技巧汇总

    Android使用EditText小技巧汇总

    这篇文章主要介绍了Android使用EditText的小技巧汇总,帮助大家更好的理解和学习使用Android,感兴趣的朋友可以了解下
    2021-05-05
  • Android retrofit上传文件实例(包含头像)

    Android retrofit上传文件实例(包含头像)

    下面小编就为大家分享一篇Android retrofit上传文件实例(包含头像),具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • Android模仿Toast实现提示框效果

    Android模仿Toast实现提示框效果

    这篇文章主要为大家详细介绍了Android模仿Toast实现提示框效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-08-08
  • Android实现Path平滑的涂鸦效果实例

    Android实现Path平滑的涂鸦效果实例

    这篇文章主要给大家介绍了关于Android实现Path平滑涂鸦效果的相关资料,通过本文介绍的方法修改后会让线条平滑很多,文中给出了详细的示例代码供大家参考学习,需要的朋友们下面随着小编来一起学习学习吧。
    2017-10-10
  • 基于Android MarginLeft与MarginStart的区别(详解)

    基于Android MarginLeft与MarginStart的区别(详解)

    下面小编就为大家分享一篇基于Android MarginLeft与MarginStart的区别(详解),具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2017-12-12
  • 一文讲解Kotlin中的contract到底有什么用

    一文讲解Kotlin中的contract到底有什么用

    我们在开发中肯定会经常用Kotlin提供的一些通用拓展函数,当我们进去看源码的时候会发现许多函数里面有contract{}包裹的代码块,那么这些代码块到底有什么作用呢?下面这篇文章主要给大家介绍了关于Kotlin中contract到底有什么用的相关资料,需要的朋友可以参考下
    2022-01-01
  • 浅析KJFrameForAndroid框架如何高效加载Bitmap

    浅析KJFrameForAndroid框架如何高效加载Bitmap

    Bitmap是Android系统中的图像处理的最重要类之一。用它可以获取图像文件信息,进行图像剪切、旋转、缩放等操作,并可以指定格式保存图像文件。本文主要是从KJFrameForAndroid框架中分析高效加载Bitmap的方法
    2014-07-07
  • Android Rsa数据加解密的介绍与使用示例

    Android Rsa数据加解密的介绍与使用示例

    RSA是第一个既能用于数据加密也能用于数字签名的算法。它易于理解和操作,也很流行。想起自己曾经使用过的Rsa非对称加密算法,闲下来总结一下。方便自己和大家以后使用的时候参考借鉴。下面来一起看看吧。
    2016-09-09
  • Android从系统Gallery获取图片具体实现

    Android从系统Gallery获取图片具体实现

    这篇文章主要介绍了Android从系统Gallery获取图片具体实现,有需要的朋友可以参考一下
    2013-12-12

最新评论