我可以在我的图片上设置元数据属性,例如Android中的标题,评论,评分,标签吗?

时间:2014-08-21 16:22:24

标签: android metadata exif

我正在使用ExifInterface并查看文档,但无法看到我如何在android中设置这些值。有可能吗?

为了澄清,我明确地在寻找如何设置问题中提到的值

ExifInterface Documentation

1 个答案:

答案 0 :(得分:-1)

也许这是setAttribute(String,String)

例如:

ExifInterface exifInterface = new ExifInterface(filePath);

String tag = exifInterface.getAttribute(TAG_ORIENTATION,0); 

exifInterface.setAttribute(TAG_ORIENTATION, "90");
exifInterface.saveAttributes();