Merge pull request #9554 from owncloud/fix_preview_orientation

fix orientation in image-backend, not in preview system itself
remotes/origin/fix-10825
Lukas Reschke 12 years ago
commit ef0a0f5f87
  1. 2
      lib/private/preview.php
  2. 1
      lib/private/preview/image.php

@ -567,8 +567,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…
Cancel
Save