Summery Summery
Sets or updates current image size.
Syntax Syntax
Parameters Parameters
- $width
-
(Optional)
Default value: false
- $height
-
(Optional)
Default value: false
Return Return
(true)
Source Source
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 ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |