ใน Python ฉันจะอ่านข้อมูล exif สำหรับรูปภาพได้อย่างไร


131

ฉันใช้ PIL ฉันจะเปลี่ยนข้อมูล EXIF ​​ให้เป็นพจนานุกรมของสิ่งต่างๆได้อย่างไร


1
ดูคำตอบได้ที่นี่: stackoverflow.com/questions/765396/…
David Wolever

tilloy.net/dev/pyexiv2/tutorial.htmlวิธีนี้ง่ายและครอบคลุมที่สุด
Kumar Deepak

คำถามล่าสุดเพิ่มเติมที่นี่: stackoverflow.com/questions/14009148/exif-reading-library
Antony Hatchkins

คำตอบ:


183

ลองสิ่งนี้:

import PIL.Image
img = PIL.Image.open('img.jpg')
exif_data = img._getexif()

สิ่งนี้จะทำให้คุณมีพจนานุกรมที่จัดทำดัชนีโดยแท็กตัวเลข EXIF หากคุณต้องการให้พจนานุกรมจัดทำดัชนีโดยสตริงชื่อแท็ก EXIF ​​จริงให้ลองทำดังนี้

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

10
ทางเลือกอื่นของ Python 3 หรือไม่?
Santosh Kumar

2
@ 2rs2ts: ลองimport ExifTags(ไม่มีPILคำนำหน้า)
Florian Brucker

12
สำหรับ python3 ให้ใช้หมอน เป็นทางแยกของ PIL ซึ่งยังอยู่ระหว่างการพัฒนาและมีเวอร์ชันที่เข้ากันได้กับ
python3

1
คุณสามารถทดสอบคำถามนี้ดาวน์โหลดรูปภาพและลองรับ ImageDescription stackoverflow.com/questions/22173902/…
AJ

3
สำหรับรหัส exif อ้างอิง: awaresystems.be/imaging/tiff/tifftags/privateifd/exif.html
Deus777

30

คุณยังสามารถใช้โมดูลExifRead :

import exifread
# Open image file for reading (binary mode)
f = open(path_name, 'rb')

# Return Exif tags
tags = exifread.process_file(f)

1
คุณสามารถทดสอบคำถามนี้ดาวน์โหลดรูปภาพและลองรับ ImageDescription stackoverflow.com/questions/22173902/…
AJ

2
@Clayton สำหรับทั้งสองภาพ exifread จะคืนค่าพจนานุกรมว่างเปล่า แต่ฉันทดสอบกับรูปถ่ายแล้วมันก็ใช้ได้ดี
tnq177

ฉันยังได้รับพจนานุกรมว่างเปล่าสำหรับชุดรูปภาพ ใครสามารถแสดงความคิดเห็นว่าทำไมถึงเป็นเช่นนี้? exifread.process_file () ใช้กับรูปภาพประเภทใดได้บ้าง
Momchill

17

ฉันใช้สิ่งนี้:

import os,sys
from PIL import Image
from PIL.ExifTags import TAGS

for (k,v) in Image.open(sys.argv[1])._getexif().iteritems():
        print '%s = %s' % (TAGS.get(k), v)

หรือเพื่อรับฟิลด์เฉพาะ:

def get_field (exif,field) :
  for (k,v) in exif.iteritems():
     if TAGS.get(k) == field:
        return v

exif = image._getexif()
print get_field(exif,'ExposureTime')

6
ดีกว่าคุณสามารถย้อนกลับแท็กที่มีแล้วไม่name2tagnum = dict((name, num) for num, name in TAGS.iteritems()) name2tagnum['ExposureTime']
เบ็น

7
สำหรับ Python 3 ให้เปลี่ยนexif.iteritems()เป็นexif.items()
SPRBRN

14

สำหรับ Python3.x และเริ่มต้นPillow==6.0.0, Imageวัตถุในขณะนี้ให้เป็นgetexif()วิธีการที่ผลตอบแทน<class 'PIL.Image.Exif'>หรือNoneว่าภาพที่มีข้อมูล EXIF ไม่มี

จากบันทึกประจำรุ่นของ Pillow 6.0.0 :

getexif()ได้รับการเพิ่มซึ่งส่งคืนExifอินสแตนซ์ สามารถเรียกดูและตั้งค่าได้เหมือนพจนานุกรม เมื่อบันทึก JPEG, PNG หรือ WEBP อินสแตนซ์สามารถส่งผ่านเป็นexifอาร์กิวเมนต์เพื่อรวมการเปลี่ยนแปลงใด ๆ ในภาพที่ส่งออก

Exifการส่งออกก็สามารถออกเสียงลงไปdictเพื่อให้ข้อมูล EXIF dictจากนั้นจะสามารถเข้าถึงได้เป็นคู่ค่าคีย์ปกติของ คีย์เป็นจำนวนเต็ม 16 บิตที่สามารถแมปกับชื่อสตริงโดยใช้ExifTags.TAGSโมดูล

from PIL import Image, ExifTags

img = Image.open("sample.jpg")
img_exif = img.getexif()
print(type(img_exif))
# <class 'PIL.Image.Exif'>

if img_exif is None:
    print("Sorry, image has no exif data.")
else:
    img_exif_dict = dict(img_exif)
    print(img_exif_dict)
    # { ... 42035: 'FUJIFILM', 42036: 'XF23mmF2 R WR', 42037: '75A14188' ... }
    for key, val in img_exif_dict.items():
        if key in ExifTags.TAGS:
            print(f"{ExifTags.TAGS[key]}:{repr(val)}")
            # ExifVersion:b'0230'
            # ...
            # FocalLength:(2300, 100)
            # ColorSpace:1
            # FocalLengthIn35mmFilm:35
            # ...
            # Model:'X-T2'
            # Make:'FUJIFILM'
            # ...
            # DateTime:'2019:12:01 21:30:07'
            # ...

ทดสอบกับ Python 3.6.8 และPillow==6.0.0.


มันใช้ไม่ได้สำหรับฉันฉันเห็นเฉพาะข้อมูล exif โดยใช้เมธอด. info ในไบนารี
GM

12
import sys
import PIL
import PIL.Image as PILimage
from PIL import ImageDraw, ImageFont, ImageEnhance
from PIL.ExifTags import TAGS, GPSTAGS



class Worker(object):
    def __init__(self, img):
        self.img = img
        self.exif_data = self.get_exif_data()
        self.lat = self.get_lat()
        self.lon = self.get_lon()
        self.date =self.get_date_time()
        super(Worker, self).__init__()

    @staticmethod
    def get_if_exist(data, key):
        if key in data:
            return data[key]
        return None

    @staticmethod
    def convert_to_degress(value):
        """Helper function to convert the GPS coordinates
        stored in the EXIF to degress in float format"""
        d0 = value[0][0]
        d1 = value[0][1]
        d = float(d0) / float(d1)
        m0 = value[1][0]
        m1 = value[1][1]
        m = float(m0) / float(m1)

        s0 = value[2][0]
        s1 = value[2][1]
        s = float(s0) / float(s1)

        return d + (m / 60.0) + (s / 3600.0)

    def get_exif_data(self):
        """Returns a dictionary from the exif data of an PIL Image item. Also
        converts the GPS Tags"""
        exif_data = {}
        info = self.img._getexif()
        if info:
            for tag, value in info.items():
                decoded = TAGS.get(tag, tag)
                if decoded == "GPSInfo":
                    gps_data = {}
                    for t in value:
                        sub_decoded = GPSTAGS.get(t, t)
                        gps_data[sub_decoded] = value[t]

                    exif_data[decoded] = gps_data
                else:
                    exif_data[decoded] = value
        return exif_data

    def get_lat(self):
        """Returns the latitude and longitude, if available, from the 
        provided exif_data (obtained through get_exif_data above)"""
        # print(exif_data)
        if 'GPSInfo' in self.exif_data:
            gps_info = self.exif_data["GPSInfo"]
            gps_latitude = self.get_if_exist(gps_info, "GPSLatitude")
            gps_latitude_ref = self.get_if_exist(gps_info, 'GPSLatitudeRef')
            if gps_latitude and gps_latitude_ref:
                lat = self.convert_to_degress(gps_latitude)
                if gps_latitude_ref != "N":
                    lat = 0 - lat
                lat = str(f"{lat:.{5}f}")
                return lat
        else:
            return None

    def get_lon(self):
        """Returns the latitude and longitude, if available, from the 
        provided exif_data (obtained through get_exif_data above)"""
        # print(exif_data)
        if 'GPSInfo' in self.exif_data:
            gps_info = self.exif_data["GPSInfo"]
            gps_longitude = self.get_if_exist(gps_info, 'GPSLongitude')
            gps_longitude_ref = self.get_if_exist(gps_info, 'GPSLongitudeRef')
            if gps_longitude and gps_longitude_ref:
                lon = self.convert_to_degress(gps_longitude)
                if gps_longitude_ref != "E":
                    lon = 0 - lon
                lon = str(f"{lon:.{5}f}")
                return lon
        else:
            return None

    def get_date_time(self):
        if 'DateTime' in self.exif_data:
            date_and_time = self.exif_data['DateTime']
            return date_and_time 

if __name__ == '__main__':
    try:
        img = PILimage.open(sys.argv[1])
        image = Worker(img)
        lat = image.lat
        lon = image.lon
        date = image.date
        print(date, lat, lon)

    except Exception as e:
        print(e)

8

ฉันพบว่าการใช้._getexifไม่ได้ผลในเวอร์ชัน python ที่สูงกว่านอกจากนี้ยังเป็นคลาสที่มีการป้องกันและควรหลีกเลี่ยงการใช้หากเป็นไปได้ หลังจากขุดรอบตัวดีบั๊กแล้วนี่คือสิ่งที่ฉันพบว่าเป็นวิธีที่ดีที่สุดในการรับข้อมูล EXIF ​​สำหรับรูปภาพ:

from PIL import Image

def get_exif(path):
    return Image.open(path).info['parsed_exif']

สิ่งนี้จะส่งคืนพจนานุกรมของข้อมูล EXIF ​​ทั้งหมดของรูปภาพ

หมายเหตุ: สำหรับ Python3.x ให้ใช้ Pillow แทน PIL


2
info['parsed_exif']ต้องใช้หมอน 6.0 หรือใหม่กว่า info['exif']มีอยู่ใน 5.4 แต่นี่เป็นการทดสอบแบบดิบ
Åsmund

1
ไม่มีinfo['parsed_exif']ในเวอร์ชัน 7.0.0; เท่านั้นinfo['exif'].
ZF007

7

นี่คือสิ่งที่อาจอ่านง่ายกว่าเล็กน้อย หวังว่านี่จะเป็นประโยชน์

from PIL import Image
from PIL import ExifTags

exifData = {}
img = Image.open(picture.jpg)
exifDataRaw = img._getexif()
for tag, value in exifDataRaw.items():
    decodedTag = ExifTags.TAGS.get(tag, tag)
    exifData[decodedTag] = value

0

ฉันมักจะใช้ pyexiv2 เพื่อตั้งค่าข้อมูล exif ในไฟล์ JPG แต่เมื่อฉันนำเข้าไลบรารีในสคริปต์สคริปต์ QGIS ขัดข้อง

ฉันพบวิธีแก้ปัญหาโดยใช้ไลบรารี exif:

https://pypi.org/project/exif/

มันใช้งานง่ายมากและด้วย Qgis ฉันก็ไม่มีปัญหาใด ๆ

ในรหัสนี้ฉันใส่พิกัด GPS ลงในภาพรวมของหน้าจอ:

from exif import Image
with open(file_name, 'rb') as image_file:
    my_image = Image(image_file)

my_image.make = "Python"
my_image.gps_latitude_ref=exif_lat_ref
my_image.gps_latitude=exif_lat
my_image.gps_longitude_ref= exif_lon_ref
my_image.gps_longitude= exif_lon

with open(file_name, 'wb') as new_image_file:
    new_image_file.write(my_image.get_file())
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.