d-kuen
d-kuen
Hi, depending on the platform (android or iOS) you need to ensure to use the correct attribute names. See [here](https://github.com/cloudacy/native_exif#platform-notes) for more details.
Hi, what platform do you use? android or iOS? `getLatLong` uses 4 GPS attributes. Did you compare the `getAttributes` output? `GPSLatitude`, `GPSLatitudeRef`, `GPSLongitude` and `GPSLongitudeRef` must be available.
It sounds like a project misconfiguration. You may want to check out https://github.com/flutter/flutter/wiki/Upgrading-pre-1.12-Android-projects#full-flutter-app-migration (most importantly the GeneratedPluginRegistrant parts) or compare your iOS AppDelegate.[m/swift] and android MainActivity.[java/kt] with the example app...
Hi, we can't reproduce this behavior. We think all data gets reset at ```dart final result = await exif.writeAttributes(attributes!); ``` if `attributes` already includes `DateTimeOriginal`, `GPSLatitude`, `GPSLatitudeRef`, `GPSLongitude` and `GPSLongitudeRef`....