Android - 取得照片資訊

摘要:Android - 取得照片資訊

要取得照片資訊使用下列方式

 


        ExifInterface exifInterface;

        try {
            exifInterface = new ExifInterface(mFilePath);
        }catch(Exception ex) {
            ex.printStackTrace();  
        }

        String content = exifInterface.getAttribute (ExifInterface.TAG_APERTURE);

其它則參考官網文件

http://developer.android.com/reference/android/media/ExifInterface.html