Skip to content
New issue

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

Not all tags is fetching from exif #5

Closed
fyn-dev opened this issue Oct 20, 2018 · 0 comments
Closed

Not all tags is fetching from exif #5

fyn-dev opened this issue Oct 20, 2018 · 0 comments

Comments

@fyn-dev
Copy link

fyn-dev commented Oct 20, 2018

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

@fyn-dev fyn-dev changed the title No tall tags is fetching from exif Not all tags is fetching from exif Oct 20, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants