WP_Image_Editor_Imagick::update_size()protectedWP 3.5.0

Sets or updates current image size.

Метод класса: WP_Image_Editor_Imagick{}

Хуков нет.

Возвращает

true|WP_Error.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->update_size( $width, $height );
$width(int)
-
По умолчанию: null
$height(int)
-
По умолчанию: null

Список изменений

С версии 3.5.0 Введена.

Код WP_Image_Editor_Imagick::update_size() WP 6.6.2

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'];
	}

	/*
	 * If we still don't have the image size, fall back to `wp_getimagesize`. This ensures AVIF images
	 * are properly sized without affecting previous `getImageGeometry` behavior.
	 */
	if ( ( ! $width || ! $height ) && 'image/avif' === $this->mime_type ) {
		$size   = wp_getimagesize( $this->file );
		$width  = $size[0];
		$height = $size[1];
	}

	return parent::update_size( $width, $height );
}