Android實現調用攝像頭拍照並存儲照片
1、前期準備
需要在Manifest中添加相關權限
<uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera.autofocus" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
2、主要方法
1、需要使用Intent調用攝像頭
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);//調用Camera startActivityForResult(intent, Activity.RESULT_OK);//如果正常,則返回 Activity.RESULT_OK 本質為 int類型的1
2、需要檢查SD卡(外部存儲)狀態
Environment.MEDIA_MOUNTED
sd卡在手機上正常使用狀態
Environment.MEDIA_UNMOUNTED
用戶手工到手機設置中卸載sd卡之後的狀態
Environment.MEDIA_REMOVED
用戶手動卸載,然後將sd卡從手機取出之後的狀態
Environment.MEDIA_BAD_REMOVAL
用戶未到手機設置中手動卸載sd卡,直接撥出之後的狀態
Environment.MEDIA_SHARED
手機直接連接到電腦作為u盤使用之後的狀態
Environment.MEDIA_CHECKINGS
手機正在掃描sd卡過程中的狀態
在代碼中的判斷
String sdStatus = Environment.getExternalStorageState(); if(!sdStatus.equals(Environment.MEDIA_MOUNTED)){ System.out.println(" ------------- sd card is not avaiable ---------------"); return; }
3、獲取圖片及其壓縮圖片
String name = "photo.jpg";//定義圖片名稱 Bundle bundle = data.getExtras();//data為onActivityResult中的intent類型的參數 Bitmap bitmap = (Bitmap) bundle.get("data");//bitmap // File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/"); // file.mkdirs(); //創建文件夾 // String fileName = Environment.getExternalStorageDirectory().getAbsolutePath()+"/"+name; String fileName = "sdcard"+"/"+name;//初始化文件路徑 FileOutputStream fos =null;//初始化文件輸出流 try { // System.out.println(fileName); // 測試用,查看文件路徑 fos=new FileOutputStream(fileName); // 輸出文件到外部存儲 //今天第一次正視這個bitmap.compress()方法,它用來壓縮圖片大小。 /* 這個方法有三個參數: Bitmap.CompressFormat format 圖像的壓縮格式; int quality 圖像壓縮率,0-100。 0 壓縮100%,100意味著不壓縮; OutputStream stream 寫入壓縮數據的輸出流; public boolean compress(CompressFormat format, int quality, OutputStream stream) {} 返回值boolean類型 如果成功地把壓縮數據寫入輸出流,則返回true。 */ bitmap.compress(Bitmap.CompressFormat.JPEG,100,fos); } catch (FileNotFoundException e) { e.printStackTrace(); }finally { try { fos.flush(); //釋放輸出流 fos.close(); } catch (IOException e) { e.printStackTrace(); } }
3、案例展示
1、Layout
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_take_photo" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:text="take photo" android:id="@+id/takephoto" /> <ImageView android:layout_below="@+id/takephoto" android:layout_width="400dp" android:layout_height="400dp" android:id="@+id/picture" /> </RelativeLayout>
2、MainActivity
package icu.whatsblog.CameraCrop; import android.app.Activity; import android.content.Intent; import android.graphics.Bitmap; import android.os.Environment; import android.provider.MediaStore; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.ImageView; import androidx.appcompat.app.AppCompatActivity; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import lee.suk.cameracrop.R; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ((Button) findViewById(R.id.takephoto)).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(intent, 1); } }); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (resultCode == Activity.RESULT_OK){ String sdStatus = Environment.getExternalStorageState(); if(!sdStatus.equals(Environment.MEDIA_MOUNTED)){ System.out.println(" ------------- sd card is not avaiable ---------------"); return; } String name = "photo.jpg"; Bundle bundle = data.getExtras(); Bitmap bitmap = (Bitmap) bundle.get("data"); // File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/"); // file.mkdirs(); //創建文件夾 // String fileName = Environment.getExternalStorageDirectory().getAbsolutePath()+"/"+name; String fileName = "sdcard"+"/"+name; FileOutputStream fos =null; try { System.out.println(fileName); fos=new FileOutputStream(fileName); bitmap.compress(Bitmap.CompressFormat.JPEG,100,fos); } catch (FileNotFoundException e) { e.printStackTrace(); }finally { try { fos.flush(); fos.close(); } catch (IOException e) { e.printStackTrace(); } } ((ImageView) findViewById(R.id.picture)).setImageBitmap(bitmap); } } }
到此這篇關於Android實現調用攝像頭拍照並存儲照片的文章就介紹到這瞭,更多相關Android調用攝像頭拍照並存儲內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Android實現將View轉化為圖片並保存到本地
- Android在一個app中安裝並卸載另一個app的示例代碼
- Android解決getExternalStorageDirectory在29後廢棄問題(推薦)
- Android四大組件之Activity詳細介紹
- android加載系統相冊圖片並顯示詳解