Merge pull request #424 from fermionic/rotate-direction-wrong

ImageMagick rotates CW while imagerotate() rotates CCW
This commit is contained in:
friendica 2012-08-04 17:02:42 -07:00
commit e840184446
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ class Photo {
if($this->is_imagick()) {
$this->image->setFirstIterator();
do {
$this->image->rotateImage(new ImagickPixel(), $degrees);
$this->image->rotateImage(new ImagickPixel(), -$degrees); // ImageMagick rotates in the opposite direction of imagerotate()
} while ($this->image->nextImage());
return;
}