On this page
WP_Image_Editor::update_size( int $width = null, int $height = null ): true
Sets current image size.
Parameters
$widthint Optional-
Default:
null $heightint Optional-
Default:
null
Return
true
Source
File: wp-includes/class-wp-image-editor.php. View all references
protected function update_size( $width = null, $height = null ) {
$this->size = array(
'width' => (int) $width,
'height' => (int) $height,
);
return true;
}
Related
Used By
| Used By | Description |
|---|---|
| WP_Image_Editor_Imagick::update_size() wp-includes/class-wp-image-editor-imagick.php | Sets or updates current image size. |
| WP_Image_Editor_GD::update_size() wp-includes/class-wp-image-editor-gd.php | Sets or updates current image size. |
Changelog
| Version | Description |
|---|---|
| 3.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_image_editor/update_size