function Resize::arguments

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

Overrides ImageToolkitOperationBase::arguments

1 method overrides Resize::arguments()
Scale::arguments in core/modules/system/src/Plugin/ImageToolkit/Operation/gd/Scale.php
Returns the definition of the operation arguments.

File

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

Class

Resize
Defines GD2 resize operation.

Namespace

Drupal\system\Plugin\ImageToolkit\Operation\gd

Code

protected function arguments() {
    return [
        'width' => [
            'description' => 'The new width of the resized image, in pixels',
        ],
        'height' => [
            'description' => 'The new height of the resized image, in pixels',
        ],
    ];
}

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