From: Gregory Smith Date: Mon, 13 Apr 2015 01:09:25 +0000 (-0400) Subject: use ImageMagick for orientation when available X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ce821d0891d9fa17716e8987218c81eb79a96003;p=friendica.git use ImageMagick for orientation when available --- diff --git a/include/Photo.php b/include/Photo.php index ccb6af29e9..e36fd46ca0 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -345,6 +345,24 @@ class Photo { } public function orient($filename) { + if ($this->is_imagick()) { + // based off comment on http://php.net/manual/en/imagick.getimageorientation.php + $orientation = $this->image->getImageOrientation(); + switch ($orientation) { + case imagick::ORIENTATION_BOTTOMRIGHT: + $this->image->rotateimage("#000", 180); + break; + case imagick::ORIENTATION_RIGHTTOP: + $this->image->rotateimage("#000", 90); + break; + case imagick::ORIENTATION_LEFTBOTTOM: + $this->image->rotateimage("#000", -90); + break; + } + + $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); + return TRUE; + } // based off comment on http://php.net/manual/en/function.imagerotate.php if(!$this->is_valid())