public final ImageToolkitOperationBase::apply(array $arguments)
Applies a toolkit specific operation to an image.
array $arguments: An associative array of data to be used by the toolkit operation.
bool TRUE if the operation was performed successfully, FALSE otherwise.
\InvalidArgumentException If one or more of the arguments are not valid.
Overrides ImageToolkitOperationInterface::apply
public final function apply(array $arguments) { $arguments = $this->prepareArguments($arguments); $arguments = $this->validateArguments($arguments); return $this->execute($arguments); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!ImageToolkit!ImageToolkitOperationBase.php/function/ImageToolkitOperationBase::apply/8.1.x