Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an exif library out there for Python 3.x? It seems every exif library I run into is for Python 2.x only. I don't need anything too fancy. Just reading the values is enough.

share|improve this question
It's kind of cheating, but we call Phil Harvey's exiftool from Python using subprocess with the -json -fast -@ argfile options. It's simple and complete, and it's fast when you need process thousands of images in batches (as we do). – Ben Hoyt Jan 1 at 3:37

1 Answer

up vote 5 down vote accepted
+50

Option 1. Use pyexiv2. See: pyexiv2 Bug #824440: Python 3 support You need boost-python for py3k and also to manually apply the patch posted at the end of the bug above, but aside from that it works. Probably easiest to get up and running under latest Ubuntu.

Option 2. Use PIL: https://github.com/sloonz/pil-py3k Downside: this branch/fork doesn't seem to be actively developed.

from PIL import Image
from PIL.ExifTags import TAGS

img = Image.open("test.jpg")
exif = i._getexif()
# decode exif using TAGS

Option 3. Use PythonMagick

from PythonMagick import Image

img = Image("image.jpg")
print img.attribute("EXIF:Orientation")

See also: Exif manipulation library for python

share|improve this answer
Ah. Didn't realize PIL had a Python3 fork. I'll give it a try and get back to you. – System Down Dec 26 '12 at 21:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.