Android拍照裁剪图片

所属分类: 软件编程 / Android 阅读数: 966
收藏 0 赞 0 分享

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

<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样式和主题之选择器的实例讲解

今天小编就为大家分享一篇关于Android样式和主题之选择器的实例讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

Android应用动态修改主题的方法示例

今天小编就为大家分享一篇关于Android应用动态修改主题的方法示例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

Flutter 网络请求框架封装详解

这篇文章主要介绍了Flutter 网络请求框架封装详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Flutter倒计时/计时器的实现代码

这篇文章主要介绍了Flutter倒计时/计时器的实现代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android使用google breakpad捕获分析native cash

这篇文章主要介绍了Android使用google breakpad捕获分析native cash 的相关知识,非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

详解Flutter WebView与JS互相调用简易指南

这篇文章主要介绍了详解Flutter WebView与JS互相调用简易指南,分为JS调用Flutter和Flutter调用JS,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android开发实现ListView和adapter配合显示图片和文字列表功能示例

这篇文章主要介绍了Android开发实现ListView和adapter配合显示图片和文字列表功能,涉及Android使用ListView结合adapter适配器实现图文显示功能相关的布局、解析、权限控制等操作技巧,需要的朋友可以参考下
收藏 0 赞 0 分享

Android文字基线Baseline算法的使用讲解

今天小编就为大家分享一篇关于Android文字基线Baseline算法的使用讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
收藏 0 赞 0 分享

Flutter自定义实现神奇动效的卡片切换视图的示例代码

这篇文章主要介绍了Flutter自定义实现神奇动效的卡片切换视图的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android实现自定义滑动刻度尺方法示例

这篇文章主要给大家介绍了关于Android实现自定义滑动刻度尺的相关资料,文中通过示例代码介绍的非常详细,对各位Android开发者们具有一定的参考学习价值,需要的朋友们下面来一起学习学习吧
收藏 0 赞 0 分享
查看更多