Created
July 10, 2017 11:51
-
-
Save mvasilkov/0cb0858b7a0d0c525740b787f61a9219 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Image, ExifTags | |
try: | |
image=Image.open(os.path.join(path, fileName)) | |
for orientation in ExifTags.TAGS.keys(): | |
if ExifTags.TAGS[orientation]=='Orientation': break | |
exif=dict(image._getexif().items()) | |
if exif[orientation] == 3: | |
image=image.rotate(180, expand=True) | |
elif exif[orientation] == 6: | |
image=image.rotate(270, expand=True) | |
elif exif[orientation] == 8: | |
image=image.rotate(90, expand=True) | |
image.thumbnail((THUMB_WIDTH , THUMB_HIGHT), Image.ANTIALIAS) | |
image.save(os.path.join(path,fileName)) | |
except: | |
traceback.print_exc() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment