public function ImageInterface::save in Drupal 8
Same name and namespace in other branches
- 9 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\ImageCode
public function save($destination = NULL);