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

In this article

Sets or updates current image size.

Parameters

$widthint|nulloptional
Image width.

Default:null

$heightint|nulloptional
Image height.

Default:null

Return

true

Source

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

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

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

Changelog

VersionDescription
3.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.