修改EXIF元数据并导出

时间:2018-08-17 01:39:12

标签: python python-3.x image exif

import exifread
f = open('manu.JPEG', 'rb')
tags = exifread.process_file(f)
tags['EXIF SceneType'] = "Manu"
tags['EXIF ExposureMode'] = "Prakash"
tags['Image Make'] = "Georgian"
tags.save('mjp.jpg', 'jpeg', exif=exif_bytes)

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-22-48afdf003b60> in <module>()
      2 tags['EXIF ExposureMode'] = "Prakash"
      3 tags['Image Make'] = "Georgian"
----> 4 tags.save('mjp.jpg', 'jpeg', exif=exif_bytes)

AttributeError: 'dict' object has no attribute 'save'

我将jpeg图像文件转换为字典,并对它的元数据进行了一些更改。现在,我要下载具有其元数据中的新更改的图像文件。我尝试使用“ .save”方法,但抛出错误。

0 个答案:

没有答案