fix orientation in image-backend, not in preview system itself
This commit is contained in:
parent
404ac8bcd3
commit
380aacdf93
|
@ -556,8 +556,6 @@ class Preview {
|
|||
return;
|
||||
}
|
||||
|
||||
$image->fixOrientation();
|
||||
|
||||
$realX = (int)$image->width();
|
||||
$realY = (int)$image->height();
|
||||
|
||||
|
|
|
@ -29,6 +29,7 @@ class Image extends Provider {
|
|||
$fileName = $fileview->getLocalFile($path);
|
||||
}
|
||||
$image->loadFromFile($fileName);
|
||||
$image->fixOrientation();
|
||||
|
||||
return $image->valid() ? $image : false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue