1. 程式人生 > >呼叫Android系統自帶相機拍照,從相簿中獲取圖片(相容7.0系統)

呼叫Android系統自帶相機拍照,從相簿中獲取圖片(相容7.0系統)

一,前言:

在日常的手機應用開發過程中,經常會遇到上傳圖片的需求,像上傳頭像之類的,這就需要呼叫系統的相機,相簿獲取照片。但是在Android 系統7.0之後認為這種操作是不安全的,這篇文章主要就是記錄7.0獲取照片遇到的問題。

二,FileProvider介紹

都說google官方文件是最好的學習資料,我也帶著英語字典上來瞅了瞅。

1,借用google官方的原話:

FileProvider is a special subclass of ContentProvider that facilitates secure sharing of files associated with an app by creating a content://

Uri for a file instead of a file:/// Uri.

大致意思是說:FileProviders 是ContentProvider的子類,它通過建立content://Uri 來取代file:///Uri,從而有助於安全地共享與應用程式相關聯的檔案。。。。詳細資訊還是到google官網看吧

三,拍照

1,許可權申請

  <uses-permission android:name="android.permission.CAMERA" />  
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

2,呼叫系統相機

    public void camera() {
        if (hasSdcard()) {
            Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
            tempFile = new File(Environment.getExternalStorageDirectory(),
                    PHOTO_FILE_NAME);
            Uri uri;
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                uri = FileProvider.getUriForFile(
                        this, "com.camera.fileprovider",
                        tempFile);
                intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
            } else {
                uri = Uri.fromFile(tempFile);
            }
            intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
            startActivityForResult(intent, PHOTO_REQUEST_CAMERA);
        }
    }
 private boolean hasSdcard() {
        return Environment.getExternalStorageState().equals(
                Environment.MEDIA_MOUNTED);
    }

1>呼叫相機之前我們可以建立一個臨時檔案tempFile指定拍照後原照片的位置

2>在7.0系統之後通過FileProvider.getUriForFile(Context context,String authority,File file);獲取content://Uri代替file:///Uri。第二個引數authority和下文將要說到的android:authorities="com.camera.fileprovider" 一致

為Uri臨時授權:

intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);

3>讓系統將原照片存放在指定的位置

 intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);

3,在AndroidManifest.xml清單檔案中註冊FileProvider

  <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="com.camera.fileProvider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths"/>
   </provider>

1>name:使用v4中預設的FileProvider
2>authorities:和上一步中獲取content://Uri保持一致。格式:xxx.fileprovider,xxx可以自定義
3>grantUriPermissions:是否允許為content://Uri賦予臨時許可權
4>meta-data:配置的是我們允許訪問的檔案的路徑,需要使用XML檔案進行配置。name是固定寫法,resource是指定的配置的xml檔案

4,在res目錄下建立一個名為xml的資料夾,然後在該資料夾下建立名為provider_paths的xml檔案

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
  
    <external-path
        name="external_storage_root"
        path="." />
    <external-path
        name="external_storage_root_file"
        path="./Demo/" />
</paths>

具體的路徑和命名規則如下:

命名 對應目錄
<files-path name = "name" path = "path"/> Context.getFilesDir()
<cache-path name = "name" path = "path"/> Contest.getCacheDir()
<external-path name = "name" path = "path"/> Environment.getExternalStorageDirectory()
<external-files-path name = "name" path = "path"/> Context.getExternalFilesDir()
<external-cache-path name = "name" path = "path"/> Context.getExternalCacheDir()
<external-media-path name = "name" path = "path"/> Context.getExternalMediaDirs()

如果需要使用FileProvider獲取某個目錄下檔案的uri,按照上表的對應關係在XML檔案中宣告就可以了

5,接收相機返回的code值

if (requestCode == PHOTO_REQUEST_CAMERA && resultCode == RESULT_OK) {
                Uri uri;
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
                    uri = FileProvider.getUriForFile(
                            this, "com.camera.fileprovider",
                            tempFile);
                } else{
                    uri = Uri.fromFile(tempFile);
}
 crop(uri);
}

1>根據臨時檔案拿到Uri

6,裁剪圖片

 mCropImageFile = new File(Environment.getExternalStorageDirectory(),   //建立一個儲存裁剪後照片的file
                 "crop_image.jpg");
        // 裁剪圖片意圖
        Intent intent = new Intent("com.android.camera.action.CROP");

        intent.setDataAndType(uri, "image/*");
        intent.putExtra("crop", "true");
        // 裁剪框的比例,1:1
        intent.putExtra("aspectX", 1);         //X方向上的比列
        intent.putExtra("aspectY", 1);         // Y方向上的比例
        intent.putExtra("outputX", 250);       //裁剪區的寬度
        intent.putExtra("outputY", 250);       //裁剪區的高度

        intent.putExtra("outputFormat", "JPEG");// 圖片格式
        intent.putExtra("noFaceDetection", true);// 取消人臉識別
        intent.putExtra("return-data", false);  //是否在Intent中返回資料
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        }
        intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(mCropImageFile));
        startActivityForResult(intent, PHOTO_REQUEST_CUT);

7,獲取裁剪後的圖片

if (requestCode == PHOTO_REQUEST_CUT) {
           Bitmap headerBitmap = BitmapFactory.decodeFile(mCropImageFile.getAbsolutePath());
            File file;
            if (headerBitmap != null)
                try {
                    file = BitmapToFile.saveFile(headerBitmap,  "crop.png");
                } catch (IOException e) {
                    e.printStackTrace();
                }

            try {
                if (tempFile != null)
                    tempFile.delete();

                if (mCropImageFile != null) {
                    mCropImageFile.delete();
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

四,相簿獲取照片

1,呼叫系統相簿

 Intent intent = new Intent(Intent.ACTION_PICK);
        intent.setType("image/*");
        startActivityForResult(intent, PHOTO_REQUEST_GALLERY);

2,接收系統相簿返回的資料

if (requestCode == PHOTO_REQUEST_GALLERY) {
            // 從相簿返回的資料
            if (data != null) {
                // 得到圖片的全路徑
                Uri uri = data.getData();
                crop(uri);
            }
        }

1>返回的資料是Intent對像,getData()返回的就是相簿中照片存放的Uri

3,裁剪和上面的邏輯是一樣的,都是根據傳入的Uri