本文主要是介绍获取图片的exif信息,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/**
* 显示图片信息的方法
* @param view
*/
public void click2(View view){
try {
//创建exif
ExifInterface exif= new ExifInterface( "/mnt/sdcard/Pictures/1.jpg" );
String time = exif.getAttribute(ExifInterface. TAG_DATETIME );
String model = exif.getAttribute(ExifInterface. TAG_MODEL );
System. out .println( "拍照的时间:" +time);
System. out .println( "相机:" +model);
} catch (IOException e) {
e.printStackTrace();
}
}
这篇关于获取图片的exif信息的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!