Uses
| Uses | Description |
|---|---|
| wp-includes/class-wp-image-editor.php: WP_Image_Editor::update_size() | Sets current image size. |
Sets or updates current image size.
(int) (Optional)
Default value: false
(int) (Optional)
Default value: false
(true)
File: wp-includes/class-wp-image-editor-gd.php
protected function update_size( $width = false, $height = false ) {
if ( ! $width ) {
$width = imagesx( $this->image );
}
if ( ! $height ) {
$height = imagesy( $this->image );
}
return parent::update_size( $width, $height );
} | Version | Description |
|---|---|
| 3.5.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_image_editor_gd/update_size