[android-developers] Re: ExifInterface and libexif

2009-06-23 Thread Augustin.CL
I found that we should use "200/1" as the value due to the Exif2.2 But I feel confused of that the values of the attributes will be wrong. The front part of the values of the longitude will be the values of the GPSImgDirection. I think that there is a bug about saving the gps attributes. BTW, Do

[android-developers] Re: ExifInterface and libexif

2009-06-22 Thread gard
Hi All, I am having the same problem and are wondering if anybody has had any luck with a custom Camera app and tagging the images with gps exif metainformation? I am wondering if refactoring Sanselan or writing a new exif parser/ writer suitable for Android might be necessary? regards, On 21

[android-developers] Re: ExifInterface and libexif

2009-06-21 Thread Augustin.CL
Does anyone have any ideas? On Jun 19, 8:24 pm, "Augustin.CL" wrote: > Dear All, >         Currently, I want to fix the camera apk to make the image > attached the GPS information. But I find there are some problems. >         1. First, we can't change the exif information. According > tohttp:

[android-developers] Re: ExifInterface and libexif

2009-06-19 Thread Augustin.CL
Could I use ExifInterface.java to getAttributes ,put some Exif Tag into that HashMap, saveAttributes and commitChanges? For Example: ExifInterface exif = new ExifInterface(filePath); HashMap exifData = exif.getAttributes(); exifData.put("GPSImgDirection","200"); exif.saveAttributes