You are here

protected function Mirror::execute in Image Effects 8.2

Same name in this branch
  1. 8.2 src/Plugin/ImageToolkit/Operation/gd/Mirror.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\gd\Mirror::execute()
  2. 8.2 src/Plugin/ImageToolkit/Operation/imagemagick/Mirror.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\imagemagick\Mirror::execute()
Same name and namespace in other branches
  1. 8.3 src/Plugin/ImageToolkit/Operation/gd/Mirror.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\gd\Mirror::execute()
  2. 8 src/Plugin/ImageToolkit/Operation/gd/Mirror.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\gd\Mirror::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

File

src/Plugin/ImageToolkit/Operation/gd/Mirror.php, line 26

Class

Mirror
Defines GD Mirror operation.

Namespace

Drupal\image_effects\Plugin\ImageToolkit\Operation\gd

Code

protected function execute(array $arguments) {
  if ($arguments['x_axis'] === TRUE && $arguments['y_axis'] === TRUE) {
    return imageflip($this
      ->getToolkit()
      ->getResource(), IMG_FLIP_BOTH);
  }
  elseif ($arguments['x_axis'] === TRUE) {
    return imageflip($this
      ->getToolkit()
      ->getResource(), IMG_FLIP_HORIZONTAL);
  }
  elseif ($arguments['y_axis'] === TRUE) {
    return imageflip($this
      ->getToolkit()
      ->getResource(), IMG_FLIP_VERTICAL);
  }
}