Android-Exif-Extended
Android-Exif-Extended copied to clipboard
How to write a Tamil text in Exif tags
I am trying to write both Tamil and English text in Exif tags but it displays ???? for Tamil text alone. Is there any other way to write Tamil text in Exif tag?
ExifInterface exif = new ExifInterface(someFile.getPath()); String text="ENGLISHதமிழ்"; exif.setAttribute(ExifInterface.TAG_IMAGE_DESCRIPTION,text); exif.saveAttributes();
Method exif.setAttribute() exists only in Android's ExifInterface, in this library it is exif.setTag(). So, you are not talking about this library. But anyway, problem with unicode text is mentioned in https://github.com/sephiroth74/Android-Exif-Extended/issues/18 too, so it's probably issue in the JHead library that both Android itself and this Android-Exif-Extended library uses internally.