WP_Image_Editor_Imagick::update_size( int $width = null, int $height = null )
Sets or updates current image size.
Parameters
- $width
-
(int) (Optional)
Default value: null
- $height
-
(int) (Optional)
Default value: null
Return
(true|WP_Error)
Source
File: wp-includes/class-wp-image-editor-imagick.php
protected function update_size( $width = null, $height = null ) {
$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 );
}
Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_image_editor_imagick/update_size