X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FImage.php;h=5e915d84f5f47ca9154c2cb6b7a3f45aa7e11f71;hb=21227453e5354fc98df9f26dec088cd6aad59c44;hp=6eb86200310aa6bb28d8b908e90fefe0227499d1;hpb=76f4ba7685dc3c722464d3b5f8be8e1b08fef05a;p=friendica.git diff --git a/src/Object/Image.php b/src/Object/Image.php index 6eb8620031..5e915d84f5 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -1,6 +1,6 @@ type = $type; if ($this->isImagick() && (empty($data) || $this->loadData($data))) { + $this->valid = !empty($data); return; } else { // Failed to load with Imagick, fallback @@ -158,12 +159,11 @@ class Image $this->image->setCompressionQuality($quality); } - // The 'width' and 'height' properties are only used by non-Imagick routines. $this->width = $this->image->getImageWidth(); $this->height = $this->image->getImageHeight(); - $this->valid = true; + $this->valid = !empty($this->image); - return true; + return $this->valid; } $this->valid = false; @@ -196,7 +196,7 @@ class Image public function isValid(): bool { if ($this->isImagick()) { - return ($this->image !== false); + return !empty($this->image); } return $this->valid; } @@ -210,9 +210,6 @@ class Image return false; } - if ($this->isImagick()) { - return $this->image->getImageWidth(); - } return $this->width; } @@ -225,9 +222,6 @@ class Image return false; } - if ($this->isImagick()) { - return $this->image->getImageHeight(); - } return $this->height; } @@ -291,49 +285,13 @@ class Image $width = $this->getWidth(); $height = $this->getHeight(); - if ((! $width)|| (! $height)) { - return false; - } - - if ($width > $max && $height > $max) { - // very tall image (greater than 16:9) - // constrain the width - let the height float. - - if ((($height * 9) / 16) > $width) { - $dest_width = $max; - $dest_height = intval(($height * $max) / $width); - } elseif ($width > $height) { - // else constrain both dimensions - $dest_width = $max; - $dest_height = intval(($height * $max) / $width); - } else { - $dest_width = intval(($width * $max) / $height); - $dest_height = $max; - } + $scale = Images::getScalingDimensions($width, $height, $max); + if ($scale) { + return $this->scale($scale['width'], $scale['height']); } else { - if ($width > $max) { - $dest_width = $max; - $dest_height = intval(($height * $max) / $width); - } else { - if ($height > $max) { - // very tall image (greater than 16:9) - // but width is OK - don't do anything - - if ((($height * 9) / 16) > $width) { - $dest_width = $width; - $dest_height = $height; - } else { - $dest_width = intval(($width * $max) / $height); - $dest_height = $max; - } - } else { - $dest_width = $width; - $dest_height = $height; - } - } + return false; } - return $this->scale($dest_width, $dest_height); } /** @@ -353,6 +311,9 @@ class Image do { $this->image->rotateImage(new ImagickPixel(), -$degrees); // ImageMagick rotates in the opposite direction of imagerotate() } while ($this->image->nextImage()); + + $this->width = $this->image->getImageWidth(); + $this->height = $this->image->getImageHeight(); return; } @@ -417,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; } @@ -576,7 +537,6 @@ class Image } } while ($this->image->nextImage()); - // These may not be necessary anymore $this->width = $this->image->getImageWidth(); $this->height = $this->image->getImageHeight(); } else { @@ -640,7 +600,7 @@ class Image do { $this->image->cropImage($w, $h, $x, $y); /* - * We need to remove the canva, + * We need to remove the canvas, * or the image is not resized to the crop: * http://php.net/manual/en/imagick.cropimage.php#97232 */ @@ -659,7 +619,7 @@ class Image if ($this->image) { imagedestroy($this->image); } - $this->image = $dest; + $this->image = $dest; $this->width = imagesx($this->image); $this->height = imagesy($this->image); @@ -733,25 +693,38 @@ class Image */ public function getBlurHash(): string { - $width = $this->getWidth(); - $height = $this->getHeight(); + $image = New Image($this->asString()); + if (empty($image) || !$this->isValid()) { + return ''; + } + + $width = $image->getWidth(); + $height = $image->getHeight(); if (max($width, $height) > 90) { - $this->scaleDown(90); - $width = $this->getWidth(); - $height = $this->getHeight(); + $image->scaleDown(90); + $width = $image->getWidth(); + $height = $image->getHeight(); + } + + if (empty($width) || empty($height)) { + return ''; } $pixels = []; for ($y = 0; $y < $height; ++$y) { $row = []; for ($x = 0; $x < $width; ++$x) { - if ($this->isImagick()) { - $colors = $this->image->getImagePixelColor($x, $y)->getColor(); + if ($image->isImagick()) { + try { + $colors = $image->image->getImagePixelColor($x, $y)->getColor(); + } catch (\Exception $exception) { + return ''; + } $row[] = [$colors['r'], $colors['g'], $colors['b']]; } else { - $index = imagecolorat($this->image, $x, $y); - $colors = @imagecolorsforindex($this->image, $index); + $index = imagecolorat($image->image, $x, $y); + $colors = @imagecolorsforindex($image->image, $index); $row[] = [$colors['red'], $colors['green'], $colors['blue']]; } } @@ -800,12 +773,14 @@ class Image if ($this->isImagick()) { $this->image->drawImage($draw); + $this->width = $this->image->getImageWidth(); + $this->height = $this->image->getImageHeight(); } else { $this->width = imagesx($this->image); $this->height = imagesy($this->image); } - $this->valid = true; + $this->valid = !empty($this->image); $this->scaleUp(min($width, $height)); }