ianare / exif-py

Easy to use Python module to extract Exif metadata from digital image files.
BSD 3-Clause "New" or "Revised" License
831 stars 191 forks source link

exifread returns empty dict #190

Open 4frag opened 8 months ago

4frag commented 8 months ago

idk why it's happening cause i use code from description

import exifread

with open('jpeg-home.jpg', "rb") as file_handle:
    tags = exifread.process_file(file_handle)

print(tags)

this code prints an empty dict whats wrong?