WP_Image_Editor_GD::save() WordPress Method

The save() method is used to save an image to a specified location. This is useful for when you want to save an image to a specific location, such as a custom directory.

WP_Image_Editor_GD::save( string|null $destfilename = null, string|null $mime_type = null ) #

Saves current in-memory image to file.


Parameters

$destfilename

(string|null)(Optional) Destination filename.

Default value: null

$mime_type

(string|null)(Optional) The mime-type.

Default value: null


Top ↑

Return

(array|WP_Error) 'path'=>string, 'file'=>string, 'width'=>int, 'height'=>int, 'mime-type'=>string


Top ↑

Source

File: wp-includes/class-wp-image-editor-gd.php

	public function save( $destfilename = null, $mime_type = null ) {
		$saved = $this->_save( $this->image, $destfilename, $mime_type );

		if ( ! is_wp_error( $saved ) ) {
			$this->file      = $saved['path'];
			$this->mime_type = $saved['mime-type'];
		}

		return $saved;
	}


Top ↑

Changelog

Changelog
VersionDescription
5.9.0Renamed $filename to $destfilename to match parent class for PHP 8 named parameter support.
3.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.