Is it possible to change the author of a photo on Android? That is, if you open the properties of a photo file on your computer, then the author was written in the "Authors" line, for example, the username of your VK account.

enter image description here

How to do it?

    1 answer 1

    try { File photo = new File("Путь_к_фото"); ExifInterface exif = new ExifInterface(photo.getCanonicalPath()); exif.setAttribute(ExifInterface.TAG_ARTIST, "Test"); exif.saveAttributes(); } catch (IOException e) { e.printStackTrace(); }