Merge pull request #9554 from owncloud/fix_preview_orientation

fix orientation in image-backend, not in preview system itself
This commit is contained in:
Lukas Reschke 2014-09-17 17:05:47 +02:00
commit ef0a0f5f87
2 changed files with 1 additions and 2 deletions

View File

@ -567,8 +567,6 @@ class Preview {
return;
}
$image->fixOrientation();
$realX = (int)$image->width();
$realY = (int)$image->height();

View File

@ -29,6 +29,7 @@ class Image extends Provider {
$fileName = $fileview->getLocalFile($path);
}
$image->loadFromFile($fileName);
$image->fixOrientation();
return $image->valid() ? $image : false;
}