public ImageToolkitBase::apply($operation, array $arguments = array())
Applies a toolkit operation to an image.
Parameters
string $operation: The toolkit operation to be processed.
array $arguments: An associative array of arguments to be passed to the toolkit operation, e.g. array('width' => 50, 'height' => 100, 'upscale' => TRUE).
Return value
bool TRUE if the operation was performed successfully, FALSE otherwise.
Overrides ImageToolkitInterface::apply
File
- core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php, line 122
Class
- ImageToolkitBase
- Provides a base class for image toolkit plugins.
Namespace
Drupal\Core\ImageToolkit
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | public function apply( $operation , array $arguments = array ()) { try { // Get the plugin to use for the operation and apply the operation. return $this ->getToolkitOperation( $operation )->apply( $arguments ); } catch (PluginNotFoundException $e ) { $this ->logger->error( "The selected image handling toolkit '@toolkit' can not process operation '@operation'." , array ( '@toolkit' => $this ->getPluginId(), '@operation' => $operation )); return FALSE; } catch (\InvalidArgumentException $e ) { $this ->logger->warning( $e ->getMessage(), array ()); return FALSE; } } |
Please login to continue.