I am using Django + PIL + Amazon boto in a web app. The user sends in the picture and the webapp displays it. Mostly, people send in photo taken from their cell phone. Sometimes, the image is displayed in the wrong orientation. Is there a way to use PIL or Django's ImageField to get the meta information from the image and to use it to rotate the image to the correct orientation?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Try this for getting the EXIF info. N.B.: the
For a random image I found on my harddisk, this produced:
It is the The raw exif data is available as a string from I'm not aware of a method to change the EXIF data using PIL, other than changing the raw data. |
||||
|
|