WP_Image_Editor_GD::update_size()protectedWP 3.5.0

Sets or updates current image size.

Method of the class: WP_Image_Editor_GD{}

No Hooks.

Return

true.

Usage

// protected - for code of main (parent) or child class
$result = $this->update_size( $width, $height );
$width(int)
-
Default: false
$height(int)
-
Default: false

Changelog

Since 3.5.0 Introduced.

WP_Image_Editor_GD::update_size() code WP 6.5.2

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