You are here

Invert.php in Image Effects 8

File

src/Plugin/ImageToolkit/Operation/gd/Invert.php
View source
<?php

namespace Drupal\image_effects\Plugin\ImageToolkit\Operation\gd;

use Drupal\system\Plugin\ImageToolkit\Operation\gd\GDImageToolkitOperationBase;

/**
 * Defines GD Invert operation.
 *
 * @ImageToolkitOperation(
 *   id = "image_effects_gd_invert",
 *   toolkit = "gd",
 *   operation = "invert",
 *   label = @Translation("Invert"),
 *   description = @Translation("Replace each pixel with its complementary color.")
 * )
 */
class Invert extends GDImageToolkitOperationBase {

  /**
   * {@inheritdoc}
   */
  protected function arguments() {

    // This operation does not use any parameters.
    return [];
  }

  /**
   * {@inheritdoc}
   */
  protected function execute(array $arguments) {
    return imagefilter($this
      ->getToolkit()
      ->getResource(), IMG_FILTER_NEGATE);
  }

}

Classes

Namesort descending Description
Invert Defines GD Invert operation.