How do I save GPS_IMG_DIRECTION tag to an image in android? I have check the following exifinterface link, but it does not seem to have GPS_IMG_DIRECTION.
http://developer.android.com/reference/android/media/ExifInterface.html
I have tried to add customtag by using this:
exifTags.setAttribute("TAG_GPS_IMG_DIRECTION", "123"); exifTags.setAttribute("TAG_GPS_IMG_DIRECTION_REF", "M"); But this doesn't seem to work. I also tried to use the hexadecimal value of the tag by :
exifTags.setAttribute("0x0011", "123"); But this too doesn't seem to work. Any ideas?