WP_Image_Editor_GD::save( string|null $filename = null, string|null $mime_type = null )
Saves current in-memory image to file.
Parameters
- $filename
-
(string|null) (Optional)
Default value: null
- $mime_type
-
(string|null) (Optional)
Default value: null
Return
(array|WP_Error) 'path'=>string, 'file'=>string, 'width'=>int, 'height'=>int, 'mime-type'=>string
Source
File: wp-includes/class-wp-image-editor-gd.php
public function save( $filename = null, $mime_type = null ) { $saved = $this->_save( $this->image, $filename, $mime_type ); if ( ! is_wp_error( $saved ) ) { $this->file = $saved['path']; $this->mime_type = $saved['mime-type']; } return $saved; }
Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_image_editor_gd/save