We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exif version 1.0 Have a look this image If you use tool like http://exif.regex.info/exif.cgi you can see data like camera, location and son on.
But when I try to use exactly the same image with this library it shows only:
Image Orientation (Short): Horizontal (normal) Image ExifOffset (Long): 38 ColorSpace (Short): sRGB ExifImageWidth (Long): 640 ExifImageLength (Long): 480
Where is the rest tags? Why it doesn't parse properly all tags?
the code I use:
file.then((fileData) async { Map<String, IfdTag> data = await readExifFromBytes(fileData); if (data == null || data.isEmpty) { debugPrint("No EXIF information found\n"); return; } for (String key in data.keys) { debugPrint("$key (${data[key].tagType}): ${data[key]}"); } });
PS. Sorry after more test I figure out that issue with image picker library and iOS. On Android everything works fine
The text was updated successfully, but these errors were encountered:
No branches or pull requests
exif version 1.0
Have a look this image
If you use tool like http://exif.regex.info/exif.cgi you can see data like camera, location and son on.
But when I try to use exactly the same image with this library it shows only:
Where is the rest tags? Why it doesn't parse properly all tags?
the code I use:
PS. Sorry after more test I figure out that issue with image picker library and iOS. On Android everything works fine
The text was updated successfully, but these errors were encountered: