Remove XMP, serial numbers EXIF tags

This commit is contained in:
M66B
2020-07-18 12:34:53 +02:00
parent b996d1313b
commit 1daa9b4862
3 changed files with 19 additions and 2 deletions

View File

@@ -3011,6 +3011,11 @@ public class FragmentCompose extends FragmentBase {
exif.setAttribute(ExifInterface.TAG_GPS_AREA_INFORMATION, null);
exif.setAttribute(ExifInterface.TAG_XMP, null);
exif.setAttribute(ExifInterface.TAG_CAMERA_OWNER_NAME, null);
exif.setAttribute(ExifInterface.TAG_BODY_SERIAL_NUMBER, null);
exif.setAttribute(ExifInterface.TAG_LENS_SERIAL_NUMBER, null);
exif.saveAttributes();
} catch (IOException ex) {
Log.w(ex);