mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-03 19:33:07 +03:00
Updated comments
This commit is contained in:
parent
68719fe6ea
commit
36a4b055bb
|
@ -3397,6 +3397,7 @@ class Exif(MutableMapping):
|
||||||
self.get_ifd(0x8769)
|
self.get_ifd(0x8769)
|
||||||
tag_data = self._ifds[0x8769][tag]
|
tag_data = self._ifds[0x8769][tag]
|
||||||
if tag == 0x927C:
|
if tag == 0x927C:
|
||||||
|
# makernote
|
||||||
from .TiffImagePlugin import ImageFileDirectory_v2
|
from .TiffImagePlugin import ImageFileDirectory_v2
|
||||||
|
|
||||||
if tag_data[:8] == b"FUJIFILM":
|
if tag_data[:8] == b"FUJIFILM":
|
||||||
|
@ -3472,7 +3473,7 @@ class Exif(MutableMapping):
|
||||||
makernote = {0x1101: dict(self._fixup_dict(camerainfo))}
|
makernote = {0x1101: dict(self._fixup_dict(camerainfo))}
|
||||||
self._ifds[tag] = makernote
|
self._ifds[tag] = makernote
|
||||||
else:
|
else:
|
||||||
# gpsinfo, interop
|
# interop
|
||||||
self._ifds[tag] = self._get_ifd_dict(tag_data)
|
self._ifds[tag] = self._get_ifd_dict(tag_data)
|
||||||
return self._ifds.get(tag, {})
|
return self._ifds.get(tag, {})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user