Created
July 10, 2017 11:51
-
-
Save mvasilkov/0cb0858b7a0d0c525740b787f61a9219 to your computer and use it in GitHub Desktop.
Revisions
-
mvasilkov created this gist
Jul 10, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ 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()