I'm writing an app where I'd like to add the direction of the camera view to the image taken. I've seen the android.media.ExifInterface class, but it looks limited to only a few fields.
The exif 'standard' defines GPSImgDirection and GPSDestBearing which look like the ones I want, but they're not defined with the ExifInterface class.
Is there any way of applying them to an image (with or without ExifInterface)? I'm prepared to write my own jpeg header parsing, but would really like to avoid it if possible.