You are here

interface ImageToolkitOperationInterface in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationInterface.php \Drupal\Core\ImageToolkit\ImageToolkitOperationInterface

Defines an interface for image toolkit operations.

An image toolkit operation plugin provides a self-contained image manipulation routine, for a specific image toolkit. Examples of image toolkit operations are scaling, cropping, rotating, etc.

Hierarchy

Expanded class hierarchy of ImageToolkitOperationInterface

All classes that implement ImageToolkitOperationInterface

See also

\Drupal\Core\ImageToolkit\Annotation\ImageToolkitOperation

\Drupal\Core\ImageToolkit\ImageToolkitOperationBase

\Drupal\Core\ImageToolkit\ImageToolkitOperationManager

Plugin API

File

core/lib/Drupal/Core/ImageToolkit/ImageToolkitOperationInterface.php, line 19

Namespace

Drupal\Core\ImageToolkit
View source
interface ImageToolkitOperationInterface extends PluginInspectionInterface {

  /**
   * Applies a toolkit specific operation to an image.
   *
   * @param array $arguments
   *   An associative array of data to be used by the toolkit operation.
   *
   * @return bool
   *   TRUE if the operation was performed successfully, FALSE otherwise.
   *
   * @throws \InvalidArgumentException
   *   If one or more of the arguments are not valid.
   */
  public function apply(array $arguments);

}

Members

Namesort descending Modifiers Type Description Overrides
ImageToolkitOperationInterface::apply public function Applies a toolkit specific operation to an image. 1
PluginInspectionInterface::getPluginDefinition public function Gets the definition of the plugin implementation. 4
PluginInspectionInterface::getPluginId public function Gets the plugin_id of the plugin instance. 2