ImageInterface::apply

public ImageInterface::apply($operation, array $arguments = array())

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,

1
['width' => 50, 'height' => 100, 'upscale' => TRUE]

Defaults to an empty array.

Return value

bool TRUE on success, FALSE on failure.

File

core/lib/Drupal/Core/Image/ImageInterface.php, line 94

Class

ImageInterface
Provides an interface for image objects.

Namespace

Drupal\Core\Image

Code

1
public function apply($operation, array $arguments = array());
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.