Docs: Improve documentation for `WP_Image_Editor::save()` and related functions.
Includes: * Documenting the returned array using hash notation. * Adding a `@since` note for the `$filesize` value being included in the returned array. This affects: * `wp_generate_attachment_metadata()` * `wp_get_attachment_metadata()` * `WP_Image_Editor::save()` * `WP_Image_Editor_GD::save()` and `::_save()` * `WP_Image_Editor_Imagick::save()` and `::_save()` Follow-up to [22094], [22619], [52837], [53546]. See #55646. Built from https://develop.svn.wordpress.org/trunk@53547 git-svn-id: http://core.svn.wordpress.org/trunk@53136 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b352d32d8a
commit
b8290da037
|
@ -190,6 +190,7 @@ function wp_update_image_subsizes( $attachment_id ) {
|
||||||
* Updates the attached file and image meta data when the original image was edited.
|
* Updates the attached file and image meta data when the original image was edited.
|
||||||
*
|
*
|
||||||
* @since 5.3.0
|
* @since 5.3.0
|
||||||
|
* @since 6.0.0 The `$filesize` value was added to the returned array.
|
||||||
* @access private
|
* @access private
|
||||||
*
|
*
|
||||||
* @param array $saved_data The data returned from WP_Image_Editor after successfully saving an image.
|
* @param array $saved_data The data returned from WP_Image_Editor after successfully saving an image.
|
||||||
|
@ -211,12 +212,12 @@ function _wp_image_meta_replace_original( $saved_data, $original_file, $image_me
|
||||||
// Make the file path relative to the upload dir.
|
// Make the file path relative to the upload dir.
|
||||||
$image_meta['file'] = _wp_relative_upload_path( $new_file );
|
$image_meta['file'] = _wp_relative_upload_path( $new_file );
|
||||||
|
|
||||||
// Store the original image file name in image_meta.
|
|
||||||
$image_meta['original_image'] = wp_basename( $original_file );
|
|
||||||
|
|
||||||
// Add image file size.
|
// Add image file size.
|
||||||
$image_meta['filesize'] = wp_filesize( $new_file );
|
$image_meta['filesize'] = wp_filesize( $new_file );
|
||||||
|
|
||||||
|
// Store the original image file name in image_meta.
|
||||||
|
$image_meta['original_image'] = wp_basename( $original_file );
|
||||||
|
|
||||||
return $image_meta;
|
return $image_meta;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -477,6 +478,7 @@ function _wp_make_subsizes( $new_sizes, $file, $image_meta, $attachment_id ) {
|
||||||
* Generate attachment meta data and create image sub-sizes for images.
|
* Generate attachment meta data and create image sub-sizes for images.
|
||||||
*
|
*
|
||||||
* @since 2.1.0
|
* @since 2.1.0
|
||||||
|
* @since 6.0.0 The `$filesize` value was added to the returned array.
|
||||||
*
|
*
|
||||||
* @param int $attachment_id Attachment ID to process.
|
* @param int $attachment_id Attachment ID to process.
|
||||||
* @param string $file Filepath of the attached image.
|
* @param string $file Filepath of the attached image.
|
||||||
|
|
|
@ -425,10 +425,20 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
|
||||||
* @since 3.5.0
|
* @since 3.5.0
|
||||||
* @since 5.9.0 Renamed `$filename` to `$destfilename` to match parent class
|
* @since 5.9.0 Renamed `$filename` to `$destfilename` to match parent class
|
||||||
* for PHP 8 named parameter support.
|
* for PHP 8 named parameter support.
|
||||||
|
* @since 6.0.0 The `$filesize` value was added to the returned array.
|
||||||
*
|
*
|
||||||
* @param string|null $destfilename Optional. Destination filename. Default null.
|
* @param string|null $destfilename Optional. Destination filename. Default null.
|
||||||
* @param string|null $mime_type Optional. The mime-type. Default null.
|
* @param string|null $mime_type Optional. The mime-type. Default null.
|
||||||
* @return array|WP_Error {'path'=>string, 'file'=>string, 'width'=>int, 'height'=>int, 'mime-type'=>string}
|
* @return array|WP_Error {
|
||||||
|
* Array on success or WP_Error if the file failed to save.
|
||||||
|
*
|
||||||
|
* @type string $path Path to the image file.
|
||||||
|
* @type string $file Name of the image file.
|
||||||
|
* @type int $width Image width.
|
||||||
|
* @type int $height Image height.
|
||||||
|
* @type string $mime-type The mime type of the image.
|
||||||
|
* @type int $filesize File size of the image.
|
||||||
|
* }
|
||||||
*/
|
*/
|
||||||
public function save( $destfilename = null, $mime_type = null ) {
|
public function save( $destfilename = null, $mime_type = null ) {
|
||||||
$saved = $this->_save( $this->image, $destfilename, $mime_type );
|
$saved = $this->_save( $this->image, $destfilename, $mime_type );
|
||||||
|
@ -442,10 +452,22 @@ class WP_Image_Editor_GD extends WP_Image_Editor {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @since 3.5.0
|
||||||
|
* @since 6.0.0 The `$filesize` value was added to the returned array.
|
||||||
|
*
|
||||||
* @param resource|GdImage $image
|
* @param resource|GdImage $image
|
||||||
* @param string|null $filename
|
* @param string|null $filename
|
||||||
* @param string|null $mime_type
|
* @param string|null $mime_type
|
||||||
* @return array|WP_Error
|
* @return array|WP_Error {
|
||||||
|
* Array on success or WP_Error if the file failed to save.
|
||||||
|
*
|
||||||
|
* @type string $path Path to the image file.
|
||||||
|
* @type string $file Name of the image file.
|
||||||
|
* @type int $width Image width.
|
||||||
|
* @type int $height Image height.
|
||||||
|
* @type string $mime-type The mime type of the image.
|
||||||
|
* @type int $filesize File size of the image.
|
||||||
|
* }
|
||||||
*/
|
*/
|
||||||
protected function _save( $image, $filename = null, $mime_type = null ) {
|
protected function _save( $image, $filename = null, $mime_type = null ) {
|
||||||
list( $filename, $extension, $mime_type ) = $this->get_output_format( $filename, $mime_type );
|
list( $filename, $extension, $mime_type ) = $this->get_output_format( $filename, $mime_type );
|
||||||
|
|
|
@ -661,10 +661,20 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
|
||||||
* Saves current image to file.
|
* Saves current image to file.
|
||||||
*
|
*
|
||||||
* @since 3.5.0
|
* @since 3.5.0
|
||||||
|
* @since 6.0.0 The `$filesize` value was added to the returned array.
|
||||||
*
|
*
|
||||||
* @param string $destfilename Optional. Destination filename. Default null.
|
* @param string $destfilename Optional. Destination filename. Default null.
|
||||||
* @param string $mime_type Optional. The mime-type. Default null.
|
* @param string $mime_type Optional. The mime-type. Default null.
|
||||||
* @return array|WP_Error {'path'=>string, 'file'=>string, 'width'=>int, 'height'=>int, 'mime-type'=>string}
|
* @return array|WP_Error {
|
||||||
|
* Array on success or WP_Error if the file failed to save.
|
||||||
|
*
|
||||||
|
* @type string $path Path to the image file.
|
||||||
|
* @type string $file Name of the image file.
|
||||||
|
* @type int $width Image width.
|
||||||
|
* @type int $height Image height.
|
||||||
|
* @type string $mime-type The mime type of the image.
|
||||||
|
* @type int $filesize File size of the image.
|
||||||
|
* }
|
||||||
*/
|
*/
|
||||||
public function save( $destfilename = null, $mime_type = null ) {
|
public function save( $destfilename = null, $mime_type = null ) {
|
||||||
$saved = $this->_save( $this->image, $destfilename, $mime_type );
|
$saved = $this->_save( $this->image, $destfilename, $mime_type );
|
||||||
|
@ -684,10 +694,22 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @since 3.5.0
|
||||||
|
* @since 6.0.0 The `$filesize` value was added to the returned array.
|
||||||
|
*
|
||||||
* @param Imagick $image
|
* @param Imagick $image
|
||||||
* @param string $filename
|
* @param string $filename
|
||||||
* @param string $mime_type
|
* @param string $mime_type
|
||||||
* @return array|WP_Error
|
* @return array|WP_Error {
|
||||||
|
* Array on success or WP_Error if the file failed to save.
|
||||||
|
*
|
||||||
|
* @type string $path Path to the image file.
|
||||||
|
* @type string $file Name of the image file.
|
||||||
|
* @type int $width Image width.
|
||||||
|
* @type int $height Image height.
|
||||||
|
* @type string $mime-type The mime type of the image.
|
||||||
|
* @type int $filesize File size of the image.
|
||||||
|
* }
|
||||||
*/
|
*/
|
||||||
protected function _save( $image, $filename = null, $mime_type = null ) {
|
protected function _save( $image, $filename = null, $mime_type = null ) {
|
||||||
list( $filename, $extension, $mime_type ) = $this->get_output_format( $filename, $mime_type );
|
list( $filename, $extension, $mime_type ) = $this->get_output_format( $filename, $mime_type );
|
||||||
|
|
|
@ -75,11 +75,21 @@ abstract class WP_Image_Editor {
|
||||||
* Saves current image to file.
|
* Saves current image to file.
|
||||||
*
|
*
|
||||||
* @since 3.5.0
|
* @since 3.5.0
|
||||||
|
* @since 6.0.0 The `$filesize` value was added to the returned array.
|
||||||
* @abstract
|
* @abstract
|
||||||
*
|
*
|
||||||
* @param string $destfilename Optional. Destination filename. Default null.
|
* @param string $destfilename Optional. Destination filename. Default null.
|
||||||
* @param string $mime_type Optional. The mime-type. Default null.
|
* @param string $mime_type Optional. The mime-type. Default null.
|
||||||
* @return array|WP_Error {'path'=>string, 'file'=>string, 'width'=>int, 'height'=>int, 'mime-type'=>string}
|
* @return array|WP_Error {
|
||||||
|
* Array on success or WP_Error if the file failed to save.
|
||||||
|
*
|
||||||
|
* @type string $path Path to the image file.
|
||||||
|
* @type string $file Name of the image file.
|
||||||
|
* @type int $width Image width.
|
||||||
|
* @type int $height Image height.
|
||||||
|
* @type string $mime-type The mime type of the image.
|
||||||
|
* @type int $filesize File size of the image.
|
||||||
|
* }
|
||||||
*/
|
*/
|
||||||
abstract public function save( $destfilename = null, $mime_type = null );
|
abstract public function save( $destfilename = null, $mime_type = null );
|
||||||
|
|
||||||
|
|
|
@ -6508,6 +6508,7 @@ function wp_delete_attachment_files( $post_id, $meta, $backup_sizes, $file ) {
|
||||||
* Retrieves attachment metadata for attachment ID.
|
* Retrieves attachment metadata for attachment ID.
|
||||||
*
|
*
|
||||||
* @since 2.1.0
|
* @since 2.1.0
|
||||||
|
* @since 6.0.0 The `$filesize` value was added to the returned array.
|
||||||
*
|
*
|
||||||
* @param int $attachment_id Attachment post ID. Defaults to global $post.
|
* @param int $attachment_id Attachment post ID. Defaults to global $post.
|
||||||
* @param bool $unfiltered Optional. If true, filters are not run. Default false.
|
* @param bool $unfiltered Optional. If true, filters are not run. Default false.
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.1-alpha-53546';
|
$wp_version = '6.1-alpha-53547';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue