You are here

protected function Resize::execute in ImageMagick 8.3

Same name and namespace in other branches
  1. 8 src/Plugin/ImageToolkit/Operation/imagemagick/Resize.php \Drupal\imagemagick\Plugin\ImageToolkit\Operation\imagemagick\Resize::execute()
  2. 8.2 src/Plugin/ImageToolkit/Operation/imagemagick/Resize.php \Drupal\imagemagick\Plugin\ImageToolkit\Operation\imagemagick\Resize::execute()

Performs the actual manipulation on the image.

Image toolkit operation implementers must implement this method. This method is responsible for actually performing the operation on the image. When this method gets called, the implementer may assume all arguments, also the optional ones, to be available, validated and corrected.

Parameters

array $arguments: An associative array of arguments to be used by the toolkit operation.

Return value

bool TRUE if the operation was performed successfully, FALSE otherwise.

Overrides ImageToolkitOperationBase::execute

1 call to Resize::execute()
Scale::execute in src/Plugin/ImageToolkit/Operation/imagemagick/Scale.php
Performs the actual manipulation on the image.
1 method overrides Resize::execute()
Scale::execute in src/Plugin/ImageToolkit/Operation/imagemagick/Scale.php
Performs the actual manipulation on the image.

File

src/Plugin/ImageToolkit/Operation/imagemagick/Resize.php, line 59

Class

Resize
Defines imagemagick resize operation.

Namespace

Drupal\imagemagick\Plugin\ImageToolkit\Operation\imagemagick

Code

protected function execute(array $arguments = []) {
  if (!empty($arguments['filter'])) {
    $this
      ->addArgument('-filter ' . $arguments['filter']);
  }
  $this
    ->addArgument('-resize ' . $arguments['width'] . 'x' . $arguments['height'] . '!');
  $this
    ->getToolkit()
    ->setWidth($arguments['width'])
    ->setHeight($arguments['height']);
  return TRUE;
}