Saturday, June 1, 2024
 Popular · Latest · Hot · Upcoming
130
rated 0 times [  133] [ 3]  / answers: 1 / hits: 16348  / 11 Years ago, sat, january 18, 2014, 12:00:00

I am creating a photo site - I uploaded a photo of myself which is actually incorrectly oriented (the image is rotated 90 degrees counter clockwise). I have uploaded this image from my iPhone, which apparently has the image stored this way on purpose.



On my site, the HTML page has rendered a JSON object that contains the URL to the photo as well as the image dimensions. I am using jQuery mobile - and onload of the page I put a link on the page, and when you click the photo it displays the photo as a popup. The popup renders an <img> tag with dimensions that are small enough to fit the image within the current viewport width/height. It calculates the dimensions using the JSON I previously mentioned, and the results from $(window).width() and $(window).height().



On desktop - the photo correctly displays in the wrong orientation (because that is how the photo is actually stored).



On iPad & iPhone - the photo is auto-rotated so the photo is correctly oriented, but the dimensions are all wrong so the photo is all stretched out and distorted.



I would like to know the following:




  1. Is this a commonly known feature of browsers on iOS or other devices?

  2. Is there a way to disable this functionality using CSS or Javascript?

  3. Is there a way to detect that it happened and correct the dimensions of the <img> tag? I don't mind that the photo's orientation was corrected by the browser, I just want the dimensions to be proper.



EDITS



Making the Title more in the form of a question - Also reformulating the question to be more direct



MORE EDITS



Here is a JS Fiddle with an example: http://jsfiddle.net/5JKgn/



If you click the link on a desktop computer, the popup shows the image improperly oriented. If you click the link on an iPhone or iPad, the popup shows the image properly oriented, but the dimensions are wrong so the photo is stretched.



In the real scenario, the JSON is rendered by PHP code which can read the image and outputs the width height from what it gets using getimagesize()


More From » css

 Answers
2

To formalize my comments - perhaps you can just sidestep the issue:




  1. If you don't need to store exact originals, you could rotate the data when storing/retrieving the image.


  2. Or, as the OP noted in response, just remove the EXIF tag, and browsers will no longer be able to use it for 'fixing' the orientation.




(p.s. Always remember to ask 'why' enough times to figure out what problem you're actually trying to solve :D)


[#73088] Thursday, January 16, 2014, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
makaylahk

Total Points: 166
Total Questions: 94
Total Answers: 117

Location: Gabon
Member since Sat, Jul 25, 2020
4 Years ago
;