imageChooser_Result (Success As Boolean, Dir As String, FileName As String)
exif.Initialize(Dir, FileName)
Dim temp As String
temp = exif.getAttribute(exif.TAG_DATETIME)
exif = new ExifInterface(dir + "/" + filename);
Looks like you need to do some string manipulation.Note that these values may point to resources other than regular files. Still you can pass them to methods that expect Dir and FileName.
Not with this library or within the Android API. You would need to wrap some code like metadata-extractor in a library.Is there an other way to do this.
Not with this library or within the Android API. You would need to wrap some code like metadata-extractor in a library.
dim test as string
test=exif.getAttribute(exif.TAG_GPS_LATITUDE_REF)
dim test as string
test=exif.getAttribute(exif.TAG_GPS_LATITUDE)
56/1,16973828/65539,393216/1795N
three RATIONAL values giving the degrees, minutes, and seconds, respectively. If latitude is expressed as degrees, minutes and seconds, a typical format would be dd/1,mm/1,ss/1. When degrees and minutes are used and, for example, fractions of minutes are given up to two decimal places, the format would be dd/1,mmmm/100,0/1.
Dim fname As String
fname = "bb.jpg"
exif.Initialize(File.DirRootExternal, fname)
exif.setAttribute(exif.TAG_GPS_LATITUDE,"78.4879874897979")
exif.setAttribute(exif.TAG_GPS_LONGITUDE,"25.62541525855")
exif.saveAttributes