Don't calculate the blurhash on images without a size

This commit is contained in:
Michael 2022-12-20 22:32:24 +00:00
parent 8e25660616
commit e6f0e3c23e
1 changed files with 6 additions and 2 deletions

View File

@ -734,15 +734,19 @@ class Image
return ''; return '';
} }
$width = $image->getWidth(); $width = $image->getWidth();
$height = $image->getHeight(); $height = $image->getHeight();
if (max($width, $height) > 90) { if (max($width, $height) > 90) {
$image->scaleDown(90); $image->scaleDown(90);
$width = $image->getWidth(); $width = $image->getWidth();
$height = $image->getHeight(); $height = $image->getHeight();
} }
if (empty($width) || empty($height)) {
return '';
}
$pixels = []; $pixels = [];
for ($y = 0; $y < $height; ++$y) { for ($y = 0; $y < $height; ++$y) {
$row = []; $row = [];