Ive created an image gallery with php and mysql, incorporating several ways to add images & ability to sort by addition method and/or category. After noticing some images from apple devices showed up with the ‘wrong’ orientation, I created another page to edit orientation and other file info, then save said changes back to file and db. Only after I thought I had solved this problem did I view the altered images on an apple device, only to realize that image was now in ‘wrong’ orientation on said device. I’ve been googling this, but can’t quite figure out exactly what I need to learn now to deal with images from apple devices in this situation. A shove in the right direction would be greatly appreciated.
Thanks!
Forgot I posted this. I figured out how to handle the orientation issue so I thought I’d share. Seems simple now. I’ve since recreated this project using Codeigniter. CI is great and saves a lot of time, but I’m glad I wrote it all myself the first time. I sure learned more that way.
First, if the file is a jpg, I get the EXIF data with PEL .
$newis the uploaded file to be checked for orientation.Then if EXIF exists, get the orientation value and run it through a switch statement, rotate it accordingly and then reset the orientation value. I’m using image_moo and Codeigniter, but this can obviously be changed to use any image manipulation library.
I’m honestly not sure if all those IF statements need to be there, but I kept running into trouble with jpg’s that only included some EXIF info and would blow up the script without them.
Hope this will be helpful to someone else struggling with the same issues.
If you see anything that could be improved, please let me know. But this works great for me.
Mark