On this page
WP_Image_Editor_Imagick::update_size( int $width = null, int $height = null ): true|WP_Error
Sets or updates current image size.
Parameters
$widthint Optional-
Default:
null $heightint Optional-
Default:
null
Return
true|WP_Error
Source
File: wp-includes/class-wp-image-editor-imagick.php. View all references
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 );
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Image_Editor::update_size() wp-includes/class-wp-image-editor.php | Sets current image size. |
| __() wp-includes/l10n.php | Retrieves the translation of $text. |
| WP_Error::__construct() wp-includes/class-wp-error.php | Initializes the error. |
Used By
| Used By | Description |
|---|---|
| WP_Image_Editor_Imagick::resize() wp-includes/class-wp-image-editor-imagick.php | Resizes current image. |
| WP_Image_Editor_Imagick::crop() wp-includes/class-wp-image-editor-imagick.php | Crops Image. |
| WP_Image_Editor_Imagick::rotate() wp-includes/class-wp-image-editor-imagick.php | Rotates current image counter-clockwise by $angle. |
| WP_Image_Editor_Imagick::load() wp-includes/class-wp-image-editor-imagick.php | Loads image from $this->file into new Imagick Object. |
Changelog
| Version | Description |
|---|---|
| 3.5.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_image_editor_imagick/update_size