Summery Summery
Sets current image size.
Syntax Syntax
Parameters Parameters
- $width
-
(Optional)
Default value: null
- $height
-
(Optional)
Default value: null
Return Return
(true)
Source Source
File: wp-includes/class-wp-image-editor.php
protected function update_size( $width = null, $height = null ) {
$this->size = array(
'width' => (int) $width,
'height' => (int) $height,
);
return true;
}
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 3.5.0 | Introduced. |