AndyB
Well-known member
AndyB submitted a new resource:
Auto Image Orientation for iPhone and iPad - Uploaded images from iPhone and iPad will auto orient
Read more about this resource...
Auto Image Orientation for iPhone and iPad - Uploaded images from iPhone and iPad will auto orient
This hack will fix the problem when images uploaded from an iPhone or iPad end up in the wrong orientation (sideways).
You must have ImageMagick installed.
Code:library/Xenforo/Upload.php Line #189 Add hack to auto orient iPhone and iPad images. $imageInfo = @getimagesize($this->_tempFile); if (!$imageInfo) { return; } // start hack exec("/usr/bin/mogrify -auto-orient $this->_tempFile"); // end hack
Read more about this resource...