I'm looking for good exif (Exchangeable image file format) manipulation library for python. I prefer flexibility (e.g., ability to retrieve providers' proprietary tags) than processing speed. What would you suggest?
|
feedback
|
|
I've been using pyexiv2 myself recently, and it seems to fit my needs quite nicely. Perhaps it might suit yours as well. | |||||
feedback
|
|
You might want to check out EXIF-py:
or the Python Imaging Library (PIL):
There's also the aptly named pyexif: http://pyexif.sourceforge.net/
However, it looks like pyexif hasn't been updated in quite while. They recommend if theirs isn't doing the trick to check out EXIF-py, so you should probably try that one first, as their sourceforge page seems to have some activity there lately, though not much. Finally, using PIL you could do this:
Disclaimer: | |||||||||
feedback
|
|
A new answer to an old post. pyexiv2 is the best library available for python and has been so for a few years now. It is a wrapper around the mature exiv2 project, supports reading and writing to many image types (JPEG, PNG, TIFF and many raw formats), understands standard (Xmp, IPTC and Exif) and non-standard metadata ("Makernotes"), and runs on multiple platforms (Windows, Linux, and, with some work, Mac). pyexiv2: http://tilloy.net/dev/pyexiv2/ Check out the tutorial to be up and running in 5 minutes or less exiv2: http://exiv2.org/ Both projects are open source. | ||||
|
feedback
|
|
You might also look at Gheorghe Milas' jpeg.py library at http://www.emilas.com/jpeg/, which is "A python library to parse, read and write JPEG EXIF, IPTC and COM metadata." A drawback is that he appears to be hosting his domain on a dynamic IP via DynDNS, so it's not always available. | |||
|
feedback
|
|
This article describes a Python module for writing EXIF metadata (and not just reading them) using pure Python. Apparently, none of PIL, pyexif, nor EXIF-py support writing EXIF. pyexiv2 appears to be bleeding-edge and platform-specific. | |||
|
feedback
|
|
I started to write my own small library which is based on the code in PIL. | |||
|
feedback
|
|
In Python 2.6 the place of module is different. Use this:
| |||
|
feedback
|
|
somehow i get an attributeError for _getexif with Paolo's code above.. I am using Python 2.6.6 and PIL 1.1.7. Is _getexif obsolete now?? Here's a small modification that worked for me.
| ||||
|
feedback
|