public function ImageToolkitBase::apply in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php \Drupal\Core\ImageToolkit\ImageToolkitBase::apply()
- 9 core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php \Drupal\Core\ImageToolkit\ImageToolkitBase::apply()
1 method overrides ImageToolkitBase::apply()
- TestToolkit::apply in core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/TestToolkit.php
- Applies a toolkit operation to an image.
File
- core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php, line 121
Class
- ImageToolkitBase
- Provides a base class for image toolkit plugins.
Namespace
Drupal\Core\ImageToolkit
Code
public function apply($operation, array $arguments = []) {
try {
return $this
->getToolkitOperation($operation)
->apply($arguments);
} catch (PluginNotFoundException $e) {
$this->logger
->error("The selected image handling toolkit '@toolkit' can not process operation '@operation'.", [
'@toolkit' => $this
->getPluginId(),
'@operation' => $operation,
]);
return FALSE;
} catch (\InvalidArgumentException $e) {
$this->logger
->warning($e
->getMessage(), []);
return FALSE;
}
}