WP_Image_Editor::update_size()
Sets current image size.
Method of the class: WP_Image_Editor{}
No Hooks.
Return
true
.
Usage
// protected - for code of main (parent) or child class $result = $this->update_size( $width, $height );
- $width(int)
- -
Default: null - $height(int)
- -
Default: null
Changelog
Since 3.5.0 | Introduced. |
WP_Image_Editor::update_size() WP Image Editor::update size code WP 6.6.2
protected function update_size( $width = null, $height = null ) { $this->size = array( 'width' => (int) $width, 'height' => (int) $height, ); return true; }