public function ImageToolkitInterface::apply in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php \Drupal\Core\ImageToolkit\ImageToolkitInterface::apply()
- 10 core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php \Drupal\Core\ImageToolkit\ImageToolkitInterface::apply()
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.
1 method overrides ImageToolkitInterface::apply()
- ImageToolkitBase::apply in core/
lib/ Drupal/ Core/ ImageToolkit/ ImageToolkitBase.php - Applies a toolkit operation to an image.
File
- core/
lib/ Drupal/ Core/ ImageToolkit/ ImageToolkitInterface.php, line 172
Class
- ImageToolkitInterface
- Defines an interface for image toolkits.
Namespace
Drupal\Core\ImageToolkitCode
public function apply($operation, array $arguments = []);