You are here

protected property AbstractAutomatedCrop::$cropBox in Automated Crop 8

All available value expected to calculate crop box area.

Type: array

File

src/AbstractAutomatedCrop.php, line 43

Class

AbstractAutomatedCrop
Provides a base class for each AutomatedCrop provider plugins.

Namespace

Drupal\automated_crop

Code

protected $cropBox = [
  'width' => 0,
  'height' => 0,
  'min_width' => 0,
  'min_height' => 0,
  'max_width' => 0,
  'max_height' => 0,
  'x' => 0,
  'y' => 0,
  'aspect_ratio' => 'NaN',
];