Last active
February 13, 2025 08:46
-
-
Save VioletVivirand/c62f58b756ac27e623614d09fc5ae6e1 to your computer and use it in GitHub Desktop.
Extract EXIF from image in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PIL import Image | |
with Image.open(image_path) as img: | |
img.load() | |
print(img.info) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment