mirror of
https://github.com/friendica/friendica
synced 2024-11-10 13:42:53 +00:00
Merge pull request #424 from fermionic/rotate-direction-wrong
ImageMagick rotates CW while imagerotate() rotates CCW
This commit is contained in:
commit
e840184446
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue