mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Fixed width and height not updated when image rotation is done by EXIF based orient method
This commit is contained in:
parent
689b6b015b
commit
19b8b389fd
1 changed files with 3 additions and 3 deletions
|
@ -378,13 +378,13 @@ class Image
|
|||
$orientation = $this->image->getImageOrientation();
|
||||
switch ($orientation) {
|
||||
case Imagick::ORIENTATION_BOTTOMRIGHT:
|
||||
$this->image->rotateimage("#000", 180);
|
||||
$this->rotate( 180);
|
||||
break;
|
||||
case Imagick::ORIENTATION_RIGHTTOP:
|
||||
$this->image->rotateimage("#000", 90);
|
||||
$this->rotate( -90);
|
||||
break;
|
||||
case Imagick::ORIENTATION_LEFTBOTTOM:
|
||||
$this->image->rotateimage("#000", -90);
|
||||
$this->rotate(90);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue