function ImageInterface::apply
Same name in other branches
- 9 core/lib/Drupal/Core/Image/ImageInterface.php \Drupal\Core\Image\ImageInterface::apply()
- 8.9.x core/lib/Drupal/Core/Image/ImageInterface.php \Drupal\Core\Image\ImageInterface::apply()
- 10 core/lib/Drupal/Core/Image/ImageInterface.php \Drupal\Core\Image\ImageInterface::apply()
Applies a toolkit operation to the image.
The operation is deferred to the active toolkit.
Parameters
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.
Return value
bool TRUE on success, FALSE on failure.
1 method overrides ImageInterface::apply()
- Image::apply in core/
lib/ Drupal/ Core/ Image/ Image.php - Applies a toolkit operation to the image.
File
-
core/
lib/ Drupal/ Core/ Image/ ImageInterface.php, line 94
Class
- ImageInterface
- Provides an interface for image objects.
Namespace
Drupal\Core\ImageCode
public function apply($operation, array $arguments = []);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.