Skip to content

Instantly share code, notes, and snippets.

@VioletVivirand
Last active February 13, 2025 08:46
Show Gist options
  • Save VioletVivirand/c62f58b756ac27e623614d09fc5ae6e1 to your computer and use it in GitHub Desktop.
Save VioletVivirand/c62f58b756ac27e623614d09fc5ae6e1 to your computer and use it in GitHub Desktop.
Extract EXIF from image in Python
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