function ScaleAndCrop::arguments

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

File

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

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.