public function ImageInterface::apply in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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: 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 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 96 - Contains \Drupal\Core\Image\ImageInterface.
Class
- ImageInterface
- Provides an interface for image objects.
Namespace
Drupal\Core\ImageCode
public function apply($operation, array $arguments = array());