The BlurHash function must not change the original image

pull/12341/head
Michael 2022-12-05 20:38:21 +00:00
parent 38fa76d6b5
commit a260e97b6f
1 changed files with 11 additions and 9 deletions

View File

@ -733,25 +733,27 @@ class Image
*/ */
public function getBlurHash(): string public function getBlurHash(): string
{ {
$width = $this->getWidth(); $image = New Image($this->asString());
$height = $this->getHeight();
$width = $image->getWidth();
$height = $image->getHeight();
if (max($width, $height) > 90) { if (max($width, $height) > 90) {
$this->scaleDown(90); $image->scaleDown(90);
$width = $this->getWidth(); $width = $image->getWidth();
$height = $this->getHeight(); $height = $image->getHeight();
} }
$pixels = []; $pixels = [];
for ($y = 0; $y < $height; ++$y) { for ($y = 0; $y < $height; ++$y) {
$row = []; $row = [];
for ($x = 0; $x < $width; ++$x) { for ($x = 0; $x < $width; ++$x) {
if ($this->isImagick()) { if ($image->isImagick()) {
$colors = $this->image->getImagePixelColor($x, $y)->getColor(); $colors = $image->image->getImagePixelColor($x, $y)->getColor();
$row[] = [$colors['r'], $colors['g'], $colors['b']]; $row[] = [$colors['r'], $colors['g'], $colors['b']];
} else { } else {
$index = imagecolorat($this->image, $x, $y); $index = imagecolorat($image->image, $x, $y);
$colors = @imagecolorsforindex($this->image, $index); $colors = @imagecolorsforindex($image->image, $index);
$row[] = [$colors['red'], $colors['green'], $colors['blue']]; $row[] = [$colors['red'], $colors['green'], $colors['blue']];
} }
} }