欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android实现拍照截图功能

时间:2020-12-29 15:27:21|栏目:Android代码|点击:

本文将向大家展示如何拍照截图。

先看看效果图:

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

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

private

static 
final 
String IMAGE_FILE_LOCATION = "file:///sdcard/temp.jpg";//temp
 file

Uri
 imageUri = Uri.parse(IMAGE_FILE_LOCATION);//The
 Uri to store the big bitmap


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

Intent
 intent = new

Intent(MediaStore.ACTION_IMAGE_CAPTURE);//action
 is capture

intent.putExtra(MediaStore.EXTRA_OUTPUT,
 imageUri);

startActivityForResult(intent,
 TAKE_BIG_PICTURE);//or
 TAKE_SMALL_PICTURE

三、接下来就可以在 onActivityResult中拿到返回的数据(Uri),并将Uri传递给截图的程序。

switch

(requestCode) {

case

TAKE_BIG_PICTURE:

  Log.d(TAG,
"TAKE_BIG_PICTURE:
 data = " 
+ data);//it
 seems to be null

  //TODO
 sent to crop

  cropImageUri(imageUri,
800,
400,
 CROP_BIG_PICTURE);

   

  break;

case

TAKE_SMALL_PICTURE:

  Log.i(TAG,
"TAKE_SMALL_PICTURE:
 data = " 
+ data);

  //TODO
 sent to crop 

  cropImageUri(imageUri,
300,
150,
 CROP_SMALL_PICTURE);

   

  break;

default:

  break;

}

可以看到,无论是拍大图片还是小图片,都是使用的Uri,只是尺寸不同而已。我们将这个操作封装在一个方法里面

private

void 
cropImageUri(Uri uri, int

outputX, int

outputY, int

requestCode){

  Intent
 intent = new

Intent("com.android.camera.action.CROP");

  intent.setDataAndType(uri,
"image/*");

  intent.putExtra("crop",
"true");

  intent.putExtra("aspectX",
2);

  intent.putExtra("aspectY",
1);

  intent.putExtra("outputX",
 outputX);

  intent.putExtra("outputY",
 outputY);

  intent.putExtra("scale",
true);

  intent.putExtra(MediaStore.EXTRA_OUTPUT,
 uri);

  intent.putExtra("return-data",
false);

  intent.putExtra("outputFormat",
 Bitmap.CompressFormat.JPEG.toString());

  intent.putExtra("noFaceDetection",
true);
//
 no face detection

  startActivityForResult(intent,
 requestCode);

}


 

四、最后一步,我们已经将数据传入裁剪图片程序,接下来要做的就是处理返回的数据了:

switch

(requestCode) {

case

CROP_BIG_PICTURE://from
 crop_big_picture

  Log.d(TAG,
"CROP_BIG_PICTURE:
 data = " 
+ data);//it
 seems to be null

  if(imageUri
 != null){

    Bitmap
 bitmap = decodeUriAsBitmap(imageUri);

    imageView.setImageBitmap(bitmap);

  }

  break;

case

CROP_SMALL_PICTURE:

  if(imageUri
 != null){

    Bitmap
 bitmap = decodeUriAsBitmap(imageUri);

    imageView.setImageBitmap(bitmap);

  }else{

    Log.e(TAG,
"CROP_SMALL_PICTURE:
 data = " 
+ data);

  }

  break;

default:

  break;

}

以上就是Android实现拍照截图功能的方法,希望对大家的学习有所帮助。

上一篇:Android自定义控件实现颜色选择器

栏    目:Android代码

下一篇:基于android实现五子棋开发

本文标题:Android实现拍照截图功能

本文地址:http://www.codeinn.net/misctech/37766.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有