AttributeError: module 'PIL.ExifTags' has no attribute 'TAG_MAKE'
时间: 2023-06-22 22:22:17 浏览: 623
AttributeError: module 'tensorflow.compat.v1' has no attribute '
如果出现了"AttributeError: module 'PIL.ExifTags' has no attribute 'TAG_MAKE'"这个错误,可能是因为在ExifTags模块中没有找到TAG_MAKE这个变量。
可以尝试使用其他的exif标签,或者检查一下PIL库的版本是否过低,可能会影响到ExifTags模块的使用。推荐使用Pillow库,它是基于PIL库的一个分支,可以通过以下命令进行安装:
```
pip install Pillow
```
如果还是无法解决问题,可以尝试使用其他的exif库来处理exif数据。例如,使用exifread库可以实现类似的功能,具体操作方法可以参考该库的文档。
阅读全文