How to Access and Convert EXIF Data to Tag Names in Python?

Mary-Kate Olsen
Release: 2024-10-22 18:02:02
Original
885 people have browsed it

How to Access and Convert EXIF Data to Tag Names in Python?

Accessing EXIF Data in Python

When working with images, it's often necessary to retrieve information such as the camera model, exposure time, and other metadata. This data is stored in the image's EXIF (Exchangeable Image File Format) metadata.

To access EXIF data in Python using the PIL (Python Imaging Library), follow these steps:

Reading EXIF as a Dictionary

  1. Import the PIL module:

    <code class="python">import PIL.Image</code>
    Copy after login
  2. Open the image you want to extract data from:

    <code class="python">img = PIL.Image.open('img.jpg')</code>
    Copy after login
  3. Use the _getexif() method to retrieve the EXIF data as a dictionary indexed by EXIF numeric tags:

    <code class="python">exif_data = img._getexif()</code>
    Copy after login

Converting Numeric Tags to Tag Names

If you prefer the dictionary keys to be the actual EXIF tag name strings, you can convert the numeric tags using the PIL.ExifTags module:

<code class="python">import PIL.ExifTags

exif = {
    PIL.ExifTags.TAGS[k]: v
    for k, v in img._getexif().items()
    if k in PIL.ExifTags.TAGS
}</code>
Copy after login

This will give you a dictionary with keys such as 'DateTimeOriginal' and 'Make' instead of numerical tags like 306 and 271.

The above is the detailed content of How to Access and Convert EXIF Data to Tag Names in Python?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!