文件名称:android 调用相机显示拍摄后的图片
文件大小:2.21MB
文件格式:RAR
更新时间:2017-11-23 09:24:03
android 相机 返回原图片
对于拍摄照片我们可以直接调用系统自带的相机拍照,一般情况下无需我们自己开发相机拍照。
1、当点击按钮后我们可以通过Intent意图启动系统相机
@Override
public void onClick(View v) {
Intent intent=new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
String temName=new DateFormat().format("yyMMdd_hhmmss",System.currentTimeMillis())+"_"+(Math.random()*100)+".jpg"; //文件名
image_path=path+File.separator+temName;
File file=new File(image_path);
if(file.exists()){
file.delete();
}
Uri u=Uri.fromFile(file);
intent.putExtra(MediaStore.EXTRA_OUTPUT, u);
startActivityForResult(intent, 0);
}
在这里设置 intent.putExtra(MediaStore.EXTRA_OUTPUT, u);非常重要,如果不设置这个参数那么我们获取到的图片只是一个经过压缩后的缩略图,只有设置这个才能得到拍摄后的原图。
2、在startActivityForResult(intent, 0);后我们需要重写onActivityResult(int requestCode, int resultCode, Intent data)方法,如果设置了MediaStore.EXTRA_OUTPUT那么我们在这里data返回的是null。
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if(resultCode==RESULT_OK){
File file=new File(image_path);
try {
Uri uri = Uri.fromFile(file);
BitmapFactory.Options options=new BitmapFactory.Options();
options.inJustDecodeBounds=true;
BitmapFactory.decodeStream(getContentResolver().openInputStream(uri), null, options);
options.inSampleSize=4;
options.inJustDecodeBounds=false;
Bitmap map=BitmapFactory.decodeStream(getContentResolver().openInputStream(uri), null, options);
android.provider.MediaStore.Images.Media.insertImage(getContentResolver(), map, null, null);
sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,uri));
image.setImageBitmap(map);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
蓝色部分是对图片进行简单的压缩处理,如果不进行处理会出现内存溢出。
红色部分是将图片保存在DCIM文件夹下。
绿色部分是发生一个广播通知系统重新扫描制定文件,这样我们就可以在图库本地图片中看到拍摄的图片。
3、最后记得在清单文件中加入调用系统相机和保存文件权限
【文件预览】:
camera
----bin()
--------classes.dex(1.33MB)
--------res()
--------camera.apk(783KB)
--------jarlist.cache(372B)
--------R.txt(30KB)
--------dexedLibs()
--------classes()
--------resources.ap_(378KB)
--------AndroidManifest.xml(1KB)
----res()
--------drawable-ldpi()
--------values-v11()
--------menu()
--------values-v14()
--------drawable-hdpi()
--------drawable-xhdpi()
--------drawable()
--------drawable-xxhdpi()
--------values()
--------drawable-mdpi()
--------layout()
--------values-w820dp()
----proguard-project.txt(781B)
----ic_launcher-web.png(50KB)
----assets()
----gen()
--------android()
--------com()
----src()
--------com()
----.project(842B)
----.classpath(475B)
----project.properties(609B)
----AndroidManifest.xml(1KB)
----libs()
--------android-support-v4.jar(633KB)