我正在使用ExifInterface并查看文档,但无法看到我如何在android中设置这些值。有可能吗?
为了澄清,我明确地在寻找如何设置问题中提到的值
答案 0 :(得分:-1)
也许这是setAttribute(String,String)?
例如:
ExifInterface exifInterface = new ExifInterface(filePath);
String tag = exifInterface.getAttribute(TAG_ORIENTATION,0);
exifInterface.setAttribute(TAG_ORIENTATION, "90");
exifInterface.saveAttributes();