# Image Height Criterion

The `Height` Search Criterion searches for image with specified height.

## Arguments

- `fieldDefIdentifier` - string representing the identifier of the field
- (optional) `minValue` - int representing minimum file height expressed in pixels, default: 0
- (optional) `maxValue` - int representing maximum file height expressed in pixels, default: `null`

## Example

### PHP

```
$query->query = new Criterion\Height('image', 0, 1500);
```
