W3cubDocs

/WordPress

WP_Image_Editor_GD::update_size( int $width = false, int $height = false ): true

Sets or updates current image size.

Parameters

$widthintoptional

Default:false

$heightintoptional

Default:false

Return

true

Source

protected function update_size( $width = false, $height = false ) {
	if ( ! $width ) {
		$width = imagesx( $this->image );
	}

	if ( ! $height ) {
		$height = imagesy( $this->image );
	}

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

Changelog

Version Description
3.5.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_image_editor_gd/update_size