Python EXIF 找不到拍摄日期信息,但通过 Windows 属性查看时存在

问题描述 投票:0回答:2

我需要按拍摄日期提取和组织照片。 Windows 10、Python 2.7。我一直在做这个

from PIL import Image
def get_date_taken(path):
    return Image.open(path)._getexif()[36867]

以下:

使用 PIL 从 EXIF 数据获取照片拍摄的日期和时间

这对于某些照片来说非常有用。

太棒了。现在抓取一组不同的图像,新相机,属性看起来很相似。

但是字典完全不同

Image.open(image)._getexif()[36867]
Traceback (most recent call last):
  Debug Probe, prompt 369, line 1
KeyError: 36867
Image.open(image)._getexif()
{36864: '0220', 37121: '\x01\x02\x03\x00', 40962: 2048, 40963: 1536, 40960: '0100', 40961: 1, 296: 2, 34665: 90, 34855: 1600, 531: 2, 282: (72, 1), 283: (72, 1), 37500: '\x01\xf1\x03\x00\x03\x00\x00\x00\x11 ....

我也尝试过exifread

a=exifread.process_file(open(image,'rb'))
a.keys()
['EXIF MakerNote', 'Image ExifOffset', 'EXIF ExposureTime', 'EXIF ComponentsConfiguration', 'Image YCbCrPositioning', 'Image XResolution', 'EXIF FlashPixVersion', 'EXIF ISOSpeedRatings', 'Image YResolution', 'EXIF ColorSpace', 'EXIF ExifImageLength', 'EXIF ExifVersion', 'Image ResolutionUnit', 'EXIF ExifImageWidth']

但没有拍摄日期。 windows 读什么而 python 不读?关于还有什么可以尝试的建议,我需要担心跨平台吗?与这里相同的问题:

“拍摄日期”未显示在图像属性项中,而显示在 Windows 资源管理器的文件详细信息(文件属性)中

但在Python中。这个友好的在线元数据查看器

http://exif.regex.info/exif.cgi

表明两个图像在 exif 中都有创建日期标签。还有什么方法可以访问它们?

有问题的图像示例位于此处

python python-imaging-library exif
2个回答
2
投票

我使用 exifread 库做到了。这是我的 python 代码片段。

import exifread
for filename in os.listdir(directoryInput):
    if filename.endswith('.JPG'):
        with open("%s/%s" % (directoryInput, filename), 'rb') as image: # file path and name
            exif = exifread.process_file(image)
            dt = str(exif['EXIF DateTimeOriginal'])  # might be different
            # segment string dt into date and time
            day, dtime = dt.split(" ", 1)
            # segment time into hour, minute, second
            hour, minute, second = dtime.split(":", 2)

0
投票

有时,拍摄日期并不存在于 EXIF 元数据中。在这种情况下,请使用

import time    
time.ctime(os.path.getmtime(img_path))
© www.soinside.com 2019 - 2024. All rights reserved.