public function Image::apply in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Image/Image.php \Drupal\Core\Image\Image::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.
Overrides ImageInterface::apply
8 calls to Image::apply()
- Image::convert in core/
lib/ Drupal/ Core/ Image/ Image.php - Instructs the toolkit to save the image in the format specified by the extension.
- Image::createNew in core/
lib/ Drupal/ Core/ Image/ Image.php - Prepares a new image, without loading it from a file.
- Image::crop in core/
lib/ Drupal/ Core/ Image/ Image.php - Crops an image to a rectangle specified by the given dimensions.
- Image::desaturate in core/
lib/ Drupal/ Core/ Image/ Image.php - Converts an image to grayscale.
- Image::resize in core/
lib/ Drupal/ Core/ Image/ Image.php - Resizes an image to the given dimensions (ignoring aspect ratio).
File
- core/
lib/ Drupal/ Core/ Image/ Image.php, line 141
Class
- Image
- Defines an image object to represent an image file.
Namespace
Drupal\Core\ImageCode
public function apply($operation, array $arguments = []) {
return $this
->getToolkit()
->apply($operation, $arguments);
}