Josegonzalez\Upload\Validation\Traits\ImageValidationTrait::isAboveMinHeight PHP Method

isAboveMinHeight() public static method

Check that the file is above the minimum height requirement
public static isAboveMinHeight ( mixed $check, integer $height ) : boolean
$check mixed Value to check
$height integer Height of Image
return boolean Success
    public static function isAboveMinHeight($check, $height)
    {
        // Non-file uploads also mean the height is too big
        if (!isset($check['tmp_name']) || !strlen($check['tmp_name'])) {
            return false;
        }
        list(, $imgHeight) = getimagesize($check['tmp_name']);
        return $height > 0 && $imgHeight >= $height;
    }