You are here

public function ImageInterface::save in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Image/ImageInterface.php \Drupal\Core\Image\ImageInterface::save()

Closes the image and saves the changes to a file.

Parameters

string|null $destination: (optional) Destination path where the image should be saved. If it is empty the original image file will be overwritten.

Return value

bool TRUE on success, FALSE on failure.

See also

\Drupal\Core\ImageToolkit\ImageToolkitInterface::save()

1 method overrides ImageInterface::save()
Image::save in core/lib/Drupal/Core/Image/Image.php
Closes the image and saves the changes to a file.

File

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

Class

ImageInterface
Provides an interface for image objects.

Namespace

Drupal\Core\Image

Code

public function save($destination = NULL);