function ScaleAndCrop::arguments

Same name in other branches
  1. 9 core/modules/system/src/Plugin/ImageToolkit/Operation/gd/ScaleAndCrop.php \Drupal\system\Plugin\ImageToolkit\Operation\gd\ScaleAndCrop::arguments()
  2. 8.9.x core/modules/system/src/Plugin/ImageToolkit/Operation/gd/ScaleAndCrop.php \Drupal\system\Plugin\ImageToolkit\Operation\gd\ScaleAndCrop::arguments()
  3. 10 core/modules/system/src/Plugin/ImageToolkit/Operation/gd/ScaleAndCrop.php \Drupal\system\Plugin\ImageToolkit\Operation\gd\ScaleAndCrop::arguments()

Overrides ImageToolkitOperationBase::arguments

File

core/modules/system/src/Plugin/ImageToolkit/Operation/gd/ScaleAndCrop.php, line 23

Class

ScaleAndCrop
Defines GD2 Scale and crop operation.

Namespace

Drupal\system\Plugin\ImageToolkit\Operation\gd

Code

protected function arguments() {
    return [
        'x' => [
            'description' => 'The horizontal offset for the start of the crop, in pixels',
            'required' => FALSE,
            'default' => NULL,
        ],
        'y' => [
            'description' => 'The vertical offset for the start the crop, in pixels',
            'required' => FALSE,
            'default' => NULL,
        ],
        'width' => [
            'description' => 'The target width, in pixels',
        ],
        'height' => [
            'description' => 'The target height, in pixels',
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.