Summery Summery
Sets or updates current image size.
Syntax Syntax
Parameters Parameters
- $width
-
(Optional)
Default value: null
- $height
-
(Optional)
Default value: null
Return Return
(true|WP_Error)
Source Source
File: wp-includes/class-wp-image-editor-imagick.php
$size = null; if ( ! $width || ! $height ) { try { $size = $this->image->getImageGeometry(); } catch ( Exception $e ) { return new WP_Error( 'invalid_image', __( 'Could not read image size.' ), $this->file ); } } if ( ! $width ) { $width = $size['width']; } if ( ! $height ) { $height = $size['height']; } return parent::update_size( $width, $height ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |