WP_Image_Editor_Imagick::update_size()protectedWP 3.5.0

Sets or updates current image size.

Method of the class: WP_Image_Editor_Imagick{}

No Hooks.

Return

true|WP_Error.

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_Imagick::update_size() code WP 6.4.3

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 );
}