Make _getexif a function

This commit is contained in:
Christoph Gohlke 2013-09-29 09:17:37 -07:00
parent 666a3f7642
commit c46b3fe256

View File

@ -358,6 +358,10 @@ class JpegImageFile(ImageFile.ImageFile):
self.tile = [] self.tile = []
def _getexif(self):
return _getexif(self)
def _getexif(self): def _getexif(self):
# Extract EXIF information. This method is highly experimental, # Extract EXIF information. This method is highly experimental,
# and is likely to be replaced with something better in a future # and is likely to be replaced with something better in a future