X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FImage.php;h=d6c897e88dcf392dd80a85ecaea9a383852084ab;hb=8101739eddd192314a33abda8a729515ece33b42;hp=f49aa7fdd233db315a42cfda6681a56fd08e5e2d;hpb=5bff6f38d7b36544fc3d09d80909af0a6d9b358d;p=friendica.git diff --git a/src/Object/Image.php b/src/Object/Image.php index f49aa7fdd2..d6c897e88d 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -1,6 +1,6 @@ imagick = class_exists('Imagick') && !class_exists('GDImage'); + $this->imagick = class_exists('Imagick'); $this->types = Images::supportedTypes(); if (!array_key_exists($type, $this->types)) { $type = 'image/jpeg'; } $this->type = $type; - if ($this->isImagick() && $this->loadData($data)) { + if ($this->isImagick() && (empty($data) || $this->loadData($data))) { + $this->valid = !empty($data); return; } else { // Failed to load with Imagick, fallback @@ -157,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; @@ -195,7 +196,7 @@ class Image public function isValid(): bool { if ($this->isImagick()) { - return ($this->image !== false); + return !empty($this->image); } return $this->valid; } @@ -209,9 +210,6 @@ class Image return false; } - if ($this->isImagick()) { - return $this->image->getImageWidth(); - } return $this->width; } @@ -224,9 +222,6 @@ class Image return false; } - if ($this->isImagick()) { - return $this->image->getImageHeight(); - } return $this->height; } @@ -290,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); } /** @@ -352,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; } @@ -416,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; } @@ -575,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 { @@ -658,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); @@ -732,28 +693,40 @@ class Image */ public function getBlurHash(): string { - if ($this->isImagick()) { - // Imagick is not supported + $image = New Image($this->asString()); + if (empty($image) || !$this->isValid()) { return ''; } - $width = $this->getWidth(); - $height = $this->getHeight(); + $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) { - $index = imagecolorat($this->image, $x, $y); - $colors = @imagecolorsforindex($this->image, $index); - - $row[] = [$colors['red'], $colors['green'], $colors['blue']]; + if ($image->isImagick()) { + try { + $colors = $image->image->getImagePixelColor($x, $y)->getColor(); + } catch (\Throwable $th) { + return ''; + } + $row[] = [$colors['r'], $colors['g'], $colors['b']]; + } else { + $index = imagecolorat($image->image, $x, $y); + $colors = @imagecolorsforindex($image->image, $index); + $row[] = [$colors['red'], $colors['green'], $colors['blue']]; + } } $pixels[] = $row; } @@ -775,25 +748,39 @@ class Image */ public function getFromBlurHash(string $blurhash, int $width, int $height) { - if ($this->isImagick()) { - // Imagick is not supported - return; - } - $scaled = Images::getScalingDimensions($width, $height, 90); $pixels = Blurhash::decode($blurhash, $scaled['width'], $scaled['height']); - $this->image = imagecreatetruecolor($scaled['width'], $scaled['height']); + if ($this->isImagick()) { + $this->image = new Imagick(); + $draw = new ImagickDraw(); + $this->image->newImage($scaled['width'], $scaled['height'], '', 'png'); + } else { + $this->image = imagecreatetruecolor($scaled['width'], $scaled['height']); + } + for ($y = 0; $y < $scaled['height']; ++$y) { for ($x = 0; $x < $scaled['width']; ++$x) { [$r, $g, $b] = $pixels[$y][$x]; - imagesetpixel($this->image, $x, $y, imagecolorallocate($this->image, $r, $g, $b)); + if ($this->isImagick()) { + $draw->setFillColor("rgb($r, $g, $b)"); + $draw->point($x, $y); + } else { + imagesetpixel($this->image, $x, $y, imagecolorallocate($this->image, $r, $g, $b)); + } } } - $this->width = imagesx($this->image); - $this->height = imagesy($this->image); - $this->valid = true; + 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 = !empty($this->image); $this->scaleUp(min($width, $height)); }