Browse Source

Fix OC_Image new resize functions

Else the wrong mimetype might be set. Resulting in continious
regeneration of previews when browsing.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
tags/v19.0.0beta7
Roeland Jago Douma 4 years ago
parent
commit
0c35aaba29
No account linked to committer's email address
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      lib/private/legacy/OC_Image.php

+ 9
- 0
lib/private/legacy/OC_Image.php View File

@@ -1101,6 +1101,9 @@ class OC_Image implements \OCP\IImage {

public function cropCopy(int $x, int $y, int $w, int $h): IImage {
$image = new OC_Image(null, $this->logger, $this->config);
$image->imageType = $this->imageType;
$image->mimeType = $this->mimeType;
$image->bitDepth = $this->bitDepth;
$image->resource = $this->cropNew($x, $y, $w, $h);

return $image;
@@ -1108,6 +1111,9 @@ class OC_Image implements \OCP\IImage {

public function preciseResizeCopy(int $width, int $height): IImage {
$image = new OC_Image(null, $this->logger, $this->config);
$image->imageType = $this->imageType;
$image->mimeType = $this->mimeType;
$image->bitDepth = $this->bitDepth;
$image->resource = $this->preciseResizeNew($width, $height);

return $image;
@@ -1115,6 +1121,9 @@ class OC_Image implements \OCP\IImage {

public function resizeCopy(int $maxSize): IImage {
$image = new OC_Image(null, $this->logger, $this->config);
$image->imageType = $this->imageType;
$image->mimeType = $this->mimeType;
$image->bitDepth = $this->bitDepth;
$image->resource = $this->resizeNew($maxSize);

return $image;

Loading…
Cancel
Save