native_exif icon indicating copy to clipboard operation
native_exif copied to clipboard

A simple EXIF metadata reader/writer for Flutter.

Results 14 native_exif issues
Sort by recently updated
recently updated
newest added

I want to set the altitude value, await exif.writeAttribute("key", "value"); I tried with but it didn't work

When I try to use the first command: final exif = await Exif.fromPath(picture!.path); I get the following error: E/flutter (10499): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MissingPluginException(No implementation found for method initPath on...

Good evening to everyone, I'm using the following code to get an image from a remote address but a strange behaviour happens: If the code is executed when the device...

I see all relevant fields are private for the exif interface, NativeExifPlugin hasn't two tags is GPSImgDirection and GPSHPositioningError which is found in IOS. Please add them to NativeExifPlugin of...

Hello, I'm having a problem where the image exif attributes only change in android emulator, but when I'm trying in a real smartphone (S20fe) the exif does not change or...

Hello, I have a lot of images where exif data cannot be read by your plugin, although they are perfectly read by Finder on Mac. I have joined an example....

Hello, I've tried to add the following key: `FileSource` ([lkCGImagePropertyExifFileSource](https://developer.apple.com/documentation/imageio/kcgimagepropertyexiffilesource)) since there doesn't seem to be support for the `Software` Tag? However, every time I try to save the code,...

when i pick image to recent images i'm able to get location data but whene i pick same image from media folder i'm not able to get image cordinates here...

await exif!.getLatLong() retuning null value Future getLatLong() async { final attributes = await getAttributes(); if (attributes == null) return null; final latitude = attributes['GPSLatitude']; final latitudeRef = attributes['GPSLatitudeRef']; final longitude...

Adds TAG_GPS_IMG_DIRECTION to android exif tags. Let me know if there's something else I need to do :)