"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Access EXIF Metadata as a Dictionary in Python Using PIL?

How Can I Access EXIF Metadata as a Dictionary in Python Using PIL?

Posted on 2025-03-11
Browse:555

How Can I Access EXIF Metadata as a Dictionary in Python Using PIL?

Retrieving EXIF Metadata as a Dictionary in Python

In image processing, extracting metadata from images like EXIF data can provide valuable information. This article explores how to access EXIF data stored in an image using the Python Imaging Library (PIL).

How to Convert EXIF Data to a Dictionary Using PIL

To obtain EXIF data as a dictionary in PIL, follow these steps:

Step 1: Open the Image

First, import the Image module from PIL and open the image of interest:

import PIL.Image
img = PIL.Image.open('image.jpg')

Step 2: Access EXIF Data

Next, utilize the protected method _getexif() to extract the EXIF data:

exif_data = img._getexif()

This results in a dictionary with keys representing EXIF numeric tags and values representing corresponding data.

Step 3: Map EXIF Tags to Strings (Optional)

To obtain a dictionary indexed by human-readable EXIF tag names, map the numeric tags to their corresponding strings from the PIL.ExifTags module:

import PIL.ExifTags
exif = {
    PIL.ExifTags.TAGS[k]: v
    for k, v in exif_data.items()
    if k in PIL.ExifTags.TAGS
}

This gives you a more user-friendly representation of the EXIF metadata in dictionary form.

Release Statement This article is reproduced on: 1729584855 If there is any infringement, please contact [email protected] to delete it.
Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3