Reputation: 11
Is there any idea why there is a different output from same code running in Mac M3 and windows ? In windows output gives much more data including a lot of numbers which I need for some information however, for M3 result .. it is much less I share the code but have no idea why ?
from PIL import Image, ExifTags
# Open the image
img = Image.open("MV_HFV_012.jpg")
img_exif = img.getexif()
x=str(img_exif)
print(x)
Version of pillow I use as the following:
Name: pillow
Version: 11.0.0
Summary: Python Imaging Library (Fork)
Home-page: https://python-pillow.org
Location: /opt/miniconda3/lib/python3.12/site-packages
Requires: Required-by: colorthief, imageio, matplotlib, scikit-image
Upvotes: 0
Views: 25