http://my.oschina.net/ryanhoo/blog/86865


上一篇博客中,我们学习到了如何使用Android相册截图。在这篇博客中,我将向大家展示如何拍照截图。

拍照截图有点儿特殊,要知道,现在的Android智能手机的摄像头都是几百万的像素,拍出来的图片都是非常大的。因此,我们不能像对待相册截图一样使用Bitmap小图,无论大图小图都统一使用Uri进行操作。

一、首先准备好需要使用到的Uri:

1 privatestaticfinalString IMAGE_FILE_LOCATION ="file:///sdcard/temp.jpg";//temp file
2 Uri imageUri = Uri.parse(IMAGE_FILE_LOCATION);//The Uri to store the big bitmap

二、使用MediaStore.ACTION_IMAGE_CAPTURE可以轻松调用Camera程序进行拍照:

1 Intent intent =newIntent(MediaStore.ACTION_IMAGE_CAPTURE);//action is capture
2 intent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
3 startActivityForResult(intent, TAKE_BIG_PICTURE);//or TAKE_SMALL_PICTURE
三、接下来就可以在 onActivityResult中拿到返回的数据(Uri),并将Uri传递给截图的程序。
01 switch(requestCode) {
02 caseTAKE_BIG_PICTURE:
03 Log.d(TAG,"TAKE_BIG_PICTURE: data = "+ data);//it seems to be null
04 //TODO sent to crop
05 cropImageUri(imageUri,800,400, CROP_BIG_PICTURE);
06
07 break;
08 caseTAKE_SMALL_PICTURE:
09 Log.i(TAG,"TAKE_SMALL_PICTURE: data = "+ data);
10 //TODO sent to crop
11 cropImageUri(imageUri,300,150, CROP_SMALL_PICTURE);
12
13 break;
14 default:
15 break;
16 }
可以看到,无论是拍大图片还是小图片,都是使用的Uri,只是尺寸不同而已。我们将这个操作封装在一个方法里面。
01 privatevoidcropImageUri(Uri uri,intoutputX,intoutputY,intrequestCode){
02 Intent intent =newIntent("com.android.camera.action.CROP");
03 intent.setDataAndType(uri,"image/*");
04 intent.putExtra("crop","true");
05 intent.putExtra("aspectX",2);
06 intent.putExtra("aspectY",1);
07 intent.putExtra("outputX", outputX);
08 intent.putExtra("outputY", outputY);
09 intent.putExtra("scale",true);
10 intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
11 intent.putExtra("return-data",false);
12 intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
13 intent.putExtra("noFaceDetection",true);// no face detection
14 startActivityForResult(intent, requestCode);
15 }
四、最后一步,我们已经将数据传入裁剪图片程序,接下来要做的就是处理返回的数据了:
01 switch(requestCode) {
02 caseCROP_BIG_PICTURE://from crop_big_picture
03 Log.d(TAG,"CROP_BIG_PICTURE: data = "+ data);//it seems to be null
04 if(imageUri !=null){
05 Bitmap bitmap = decodeUriAsBitmap(imageUri);
06 imageView.setImageBitmap(bitmap);
07 }
08 break;
09 caseCROP_SMALL_PICTURE:
10 if(imageUri !=null){
11 Bitmap bitmap = decodeUriAsBitmap(imageUri);
12 imageView.setImageBitmap(bitmap);
13 }else{
14 Log.e(TAG,"CROP_SMALL_PICTURE: data = "+ data);
15 }
16 break;
17 default:
18 break;
19 }

效果图:


源码下载:http://download.csdn.net/detail/floodingfire/4728509

更多相关文章

  1. Android(安卓)NDK
  2. [置顶] Android使用主题配置文件,去掉程序启动界面的短暂黑屏。
  3. Java vs Kotlin,Android开发人员应该选择哪种语言?
  4. Android(安卓)NDK简介
  5. Android(安卓)实现程序完全退出
  6. Android(安卓)Studio导入github下载的工程
  7. [置顶] android调用第三方库——第一篇
  8. 让Android应用程序支持安装到SD卡
  9. Android的平台架构

随机推荐

  1. 漫画头发怎么画好?漫画人物头发画法
  2. 领略 Laravel 和 Filament 后台的魔力
  3. Linux 自动化构建工具 make/Makefile
  4. 日系插画入门学什么?新手插画学习方法
  5. Android中native进程内存泄露的调试技巧
  6. 深入浅出 - Android系统移植与平台开发(六
  7. webservice二进制文件传输
  8. Android高手进阶教程(三)之----Android(
  9. Android多点触控开发原理
  10. android 触摸事件、点击事件的区别