exif: store w/h for high-res images

cap
Varun Patil 2022-12-02 23:50:33 -08:00
parent 3cb0abaea7
commit e2919ff2d4
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ class Exif
return [$height, $width];
}
if ($width <= 0 || $height <= 0 || $width > 10000 || $height > 10000) {
if ($width <= 0 || $height <= 0 || $width > 100000 || $height > 100000) {
return [0, 0];
}