From: Jason Woofenden Date: Fri, 3 Jun 2011 00:49:00 +0000 (-0400) Subject: convert_uploaded_image: activate exif rotation X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=6f0496dc8fa0c71b6606456cf4bc4b65e8140ec6 convert_uploaded_image: activate exif rotation --- diff --git a/upload.php b/upload.php index 5d5c8a0..b1b3323 100644 --- a/upload.php +++ b/upload.php @@ -392,7 +392,7 @@ function convert_uploaded_image($key, $path, $image_width = 0, $image_height = 0 $filename = $path; } - $convert_params = '-colorspace RGB'; + $convert_params = '-colorspace RGB -auto-orient'; if($image_width > 0 && $image_height > 0) { $convert_params .= " -geometry ${image_width}x$image_height"; }