drewnoakes / metadata-extractor

Extracts Exif, IPTC, XMP, ICC and other metadata from image, video and audio files
Apache License 2.0
2.56k stars 480 forks source link

can't print gps info when i use a picture with location info #472

Closed foolishgao closed 4 years ago

foolishgao commented 4 years ago

Metadata metadata = JpegMetadataReader.readMetadata(imageFile); for(Directory directory : metadata.getDirectories()){ for(Tag tag : directory.getTags()){ Log.e("gaoman", "name=" + tag.getTagName() + "desc=" + tag.getDescription()); } } i print tags,but no gps infos i take a picture with my huawei phone has location info and i can see the location info in my mac , do you know why