Merge pull request #12494 from annando/blurhash-fix
Don't calculate the blurhash on images without a size
This commit is contained in:
commit
31e8574006
|
@ -743,6 +743,10 @@ class Image
|
||||||
$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 = [];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user