Is it possible to access additional EXIF tags #7486
Replies: 4 comments 13 replies
-
Rather than using with Image.open("Tests/images/flower.jpg") as im:
exif = im.getexif()
print(exif.get_ifd(ExifTags.IFD.Exif)) |
Beta Was this translation helpful? Give feedback.
-
Hi Radar -I appreciate your quick response. IFD is defined as class IFD(IntEnum): Do you know what the value 34665 stems from, and could that be the key to accessing additional tags? I'm completely new to this project and trying to solve what I initially thought to be a simple problem. |
Beta Was this translation helpful? Give feedback.
-
According to information I am finding via AI It seems perhaps the data I am looking for is nestled under Sub-IFDs.
|
Beta Was this translation helpful? Give feedback.
-
@radarhere |
Beta Was this translation helpful? Give feedback.
-
Hello Everyone!
Can someone have a look and give some assistance here?
I am working with image files' Exif data, rather than the image itself. Things were going pretty good until I reached a roadblock after having realized that the population of EXIF tags available by default is about 46.
There are some important tags that I need for my project, but. they aren't accessible:
For example:
Tag ID | Tag Name
0x9c9e | XPKeywords
0x9c9f | XPSubject
0xa436 | Title
Is there a way to extend the tags that _getexif() returns? If you can suggest what direction I need to take in order to access the information I need, then I would really appreciate it.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions