I have the following Python script:
from PIL import Image
from PIL.ExifTags import TAGS
img = Image.open('/path/1.jpg')
info = img._getexif()
print info
Why is info returned as None, although that I made sure that img has been read?
Thanks.
