获取Exif信息
代表的是文件的头信息;
步骤:
步骤一:
// 获取指定的文件的头信息对象
ExifInterface exif = new ExifInterface("/sdcard/x.jpg");
步骤二:
获取指定的头信息:
// 获取指定的信息
// 获取拍摄时间
String time =exif.getAttribute(ExifInterface.TAG_DATETIME);
System.out.println("拍摄时间是:==="
+ time);
//获取设备信息
String model =exif.getAttribute(ExifInterface.TAG_MODEL);
System.out.println("拍摄的设备是:==="
+ model);
// 设置自定义的头信息
exif.setAttribute(tag, value);
Android获取Exif信息,布布扣,bubuko.com
时间: 2024-10-10 07:58:54