public Image::apply($operation, array $arguments = array())
Applies a toolkit operation to the image.
The operation is deferred to the active toolkit.
string $operation: The operation to be performed against the image.
array $arguments: (optional) An associative array of arguments to be passed to the toolkit operation; for instance,
['width' => 50, 'height' => 100, 'upscale' => TRUE]
Defaults to an empty array.
bool TRUE on success, FALSE on failure.
Overrides ImageInterface::apply
public function apply($operation, array $arguments = array()) { return $this->getToolkit()->apply($operation, $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!Image!Image.php/function/Image::apply/8.1.x