Android中调用系统的相机和图库获取图片

//--------我的主布局文件------很简单---------------------------------

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"> <Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="gallery"
android:text="获取图库图片" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="camera"
android:text="拍照获取图片" /> <ImageView
android:id="@+id/iv_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout> //------------------我的MainActivity --------------也很简单--------------------------
package tackpicture.bwie.com.tackpicture;

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.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.Toast; import java.io.File; public class MainActivity extends AppCompatActivity { private ImageView iv_image; private static final int PHOTO_REQUEST_CAREMA = 1;// 拍照
private static final int PHOTO_REQUEST_GALLERY = 2;// 从相册中选择
private static final int PHOTO_REQUEST_CUT = 3;// 结果
/* 头像名称 */
private static final String PHOTO_FILE_NAME = "temp_photo.jpg";
private File tempFile; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//找到控件
iv_image = (ImageView) findViewById(R.id.iv_image);
} //图库
public void camera(View view) {
// 激活系统图库,选择一张图片
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
// 开启一个带有返回值的Activity,请求码为PHOTO_REQUEST_GALLERY
startActivityForResult(intent, PHOTO_REQUEST_GALLERY);
} //相机
public void gallery(View view) {
// 激活相机
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
// 判断存储卡是否可以用,可用进行存储
if (hasSdcard()) {
tempFile = new File(Environment.getExternalStorageDirectory(), PHOTO_FILE_NAME);
// 从文件中创建uri
Uri uri = Uri.fromFile(tempFile);
intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
}
// 开启一个带有返回值的Activity,请求码为PHOTO_REQUEST_CAREMA
startActivityForResult(intent, PHOTO_REQUEST_CAREMA);
} /*
* 剪切图片
*/
private void crop(Uri uri) {
// 裁剪图片意图
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setDataAndType(uri, "image/*");
intent.putExtra("crop", "true");
// 裁剪框的比例,1:1
intent.putExtra("aspectX", 1);
intent.putExtra("aspectY", 1);
// 裁剪后输出图片的尺寸大小
intent.putExtra("outputX", 250);
intent.putExtra("outputY", 250); intent.putExtra("outputFormat", "JPEG");// 图片格式
intent.putExtra("noFaceDetection", true);// 取消人脸识别
intent.putExtra("return-data", true);
// 开启一个带有返回值的Activity,请求码为PHOTO_REQUEST_CUT
startActivityForResult(intent, PHOTO_REQUEST_CUT);
} /*
* 判断sdcard是否被挂载
*/
private boolean hasSdcard() {
if (Environment.getExternalStorageState().equals(
Environment.MEDIA_MOUNTED)) {
return true;
} else {
return false;
}
} @Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == PHOTO_REQUEST_GALLERY) {
// 从相册返回的数据
if (data != null) {
// 得到图片的全路径
Uri uri = data.getData();
crop(uri);
}
} else if (requestCode == PHOTO_REQUEST_CAREMA) {
// 从相机返回的数据
if (hasSdcard()) {
crop(Uri.fromFile(tempFile));
} else {
Toast.makeText(MainActivity.this, "未找到存储卡,无法存储照片!", 0).show();
} } else if (requestCode == PHOTO_REQUEST_CUT) {
// 从剪切图片返回的数据
if (data != null) {
Bitmap bitmap = data.getParcelableExtra("data");
this.iv_image.setImageBitmap(bitmap);
}
try {
// 将临时文件删除
tempFile.delete();
} catch (Exception e) {
e.printStackTrace();
} } super.onActivityResult(requestCode, resultCode, data);
} }

//-----------------以上就完了-----------------------------

下面看一下怎么把图片的Bitmap保存到SharedPreferences

SharedPreferences详解(三)——存取图片

Android中调用系统的相机和图库获取图片 (2014-11-27 17:34:43)


标签:

android

分类: 软件开发

这篇博文来自 http://blog.csdn.net/lfdfhl/article/details/37914673;非常感谢作者的分享
 
 
MainActivity如下:
[java] view plaincopyAndroid中调用系统的相机和图库获取图片Android中调用系统的相机和图库获取图片
  1. package cc.sp;
  2. import java.io.ByteArrayInputStream;
  3. import java.io.ByteArrayOutputStream;
  4. import android.os.Bundle;
  5. import android.util.Base64;
  6. import android.view.View;
  7. import android.view.View.OnClickListener;
  8. import android.widget.Button;
  9. import android.widget.ImageView;
  10. import android.app.Activity;
  11. import android.content.Context;
  12. import android.content.SharedPreferences;
  13. import android.content.SharedPreferences.Editor;
  14. import android.graphics.Bitmap;
  15. import android.graphics.Bitmap.CompressFormat;
  16. import android.graphics.BitmapFactory;
  17. public class MainActivity extends Activity {
  18. private Button mSaveButton;
  19. private Button mGetButton;
  20. private ImageView mImageView;
  21. @Override
  22. protected void onCreate(Bundle savedInstanceState) {
  23. super.onCreate(savedInstanceState);
  24. setContentView(R.layout.main);
  25. init();
  26. }
  27. private void init(){
  28. mSaveButton=(Button) findViewById(R.id.saveButton);
  29. mSaveButton.setOnClickListener(new OnClickListener() {
  30. @Override
  31. public void onClick(View view) {
  32. saveBitmapToSharedPreferences();
  33. }
  34. });
  35. mGetButton=(Button) findViewById(R.id.getButton);
  36. mGetButton.setOnClickListener(new OnClickListener() {
  37. @Override
  38. public void onClick(View view) {
  39. getBitmapFromSharedPreferences();
  40. }
  41. });
  42. mImageView=(ImageView) findViewById(R.id.imageView);
  43. }
  44. private void saveBitmapToSharedPreferences(){
  45. Bitmap bitmap=BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
  46. //第一步:将Bitmap压缩至字节数组输出流ByteArrayOutputStream
  47. ByteArrayOutputStream byteArrayOutputStream=new ByteArrayOutputStream();
  48. bitmap.compress(CompressFormat.PNG, 80, byteArrayOutputStream);
  49. //第二步:利用Base64将字节数组输出流中的数据转换成字符串String
  50. byte[] byteArray=byteArrayOutputStream.toByteArray();
  51. String imageString=new String(Base64.encodeToString(byteArray, Base64.DEFAULT));
  52. //第三步:将String保持至SharedPreferences
  53. SharedPreferences sharedPreferences=getSharedPreferences("testSP", Context.MODE_PRIVATE);
  54. Editor editor=sharedPreferences.edit();
  55. editor.putString("image", imageString);
  56. editor.commit();
  57. }
  58. private void getBitmapFromSharedPreferences(){
  59. SharedPreferences sharedPreferences=getSharedPreferences("testSP", Context.MODE_PRIVATE);
  60. //第一步:取出字符串形式的Bitmap
  61. String imageString=sharedPreferences.getString("image", "");
  62. //第二步:利用Base64将字符串转换为ByteArrayInputStream
  63. byte[] byteArray=Base64.decode(imageString, Base64.DEFAULT);
  64. ByteArrayInputStream byteArrayInputStream=new ByteArrayInputStream(byteArray);
  65. //第三步:利用ByteArrayInputStream生成Bitmap
  66. Bitmap bitmap=BitmapFactory.decodeStream(byteArrayInputStream);
  67. mImageView.setImageBitmap(bitmap);
  68. }
  69. }
//-------------------------------布局文件------------------------------------

main.xml如下:
[html] view plaincopyAndroid中调用系统的相机和图库获取图片Android中调用系统的相机和图库获取图片
    1. <</span>RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    2. xmlns:tools="http://schemas.android.com/tools"
    3. android:layout_width="match_parent"
    4. android:layout_height="match_parent"
    5. >
    6. <</span>Button
    7. android:id="@+id/saveButton"
    8. android:layout_width="wrap_content"
    9. android:layout_height="wrap_content"
    10. android:text="保存图片到SharedPreferences"
    11. android:layout_centerHorizontal="true"
    12. android:layout_marginTop="25dip"/>
    13. <</span>Button
    14. android:id="@+id/getButton"
    15. android:layout_width="wrap_content"
    16. android:layout_height="wrap_content"
    17. android:text="从SharedPreferences获取图片"
    18. android:layout_centerHorizontal="true"
    19. android:layout_marginTop="80dip"/>
    20. <</span>ImageView
    21. android:id="@+id/imageView"
    22. android:layout_width="wrap_content"
    23. android:layout_height="wrap_content"
    24. android:layout_centerInParent="true"
    25. />
    26. </</span>RelativeLayout>
上一篇:JEESZ架构、分布式服务:Dubbo+Zookeeper+Proxy+Restful


下一篇:Spring Cloud集成项目简介