Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Images rotate automatically

I have a iPhone app that uploads pictures to my server. One major issue I am having is a rotating one.

For some reason if I upload a picture from my iPhone, some pictures will automatically rotate. The one's that do get rotated are the ones in portrait mode. I have no code in my script that rotates the images.

How does a server exactly process tall images? Should I modify my php file to check to rotate it ahead after it automatically rotates? Should I code something in my iPhone app that will check this?

Any help is appreciated!

PS: If you need code, feel free to ask!

like image 272
iosfreak Avatar asked Mar 31 '11 06:03

iosfreak


People also ask

Why do my pictures rotate when I upload?

Photos taken with a smartphone or digital camera contain “Exif data,” all sorts of information about where the photo was taken, when it was taken, and even how the camera was oriented. When uploaded to File Manager, this data is preserved, and that can often cause the orientation of the picture to be rotated.

Why does my screen automatically rotate?

If you've enabled the automatic screen rotation option from your phone's Quick Settings menu, try turning on that option from the Settings app and see if that helps fix your issue. In case you have a non-functional tile in Quick Settings, this method should fix your problem.

How do I auto rotate photos in Windows?

The built-in Photos app in Windows 10 allows you to rotate pictures. To rotate the picture file, open the picture file that you want to rotate with the Photos app, and then click the Rotate icon or press Ctrl + R hotkey. The app rotates the picture by 90 degrees to the right at a time.


1 Answers

Some pictures(jpg) have exif data that tells the position the camera was when the picture was shot.

Take a look at http://www.php.net/manual/en/function.exif-read-data.php#76964

You may rotate the pictures server-side like this

like image 150
Quamis Avatar answered Sep 30 '22 05:09

Quamis