WP_Image_Editor::update_size()protectedWP 3.5.0

Sets current image size.

Method of the class: WP_Image_Editor{}

No Hooks.

Return

true.

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

protected function update_size( $width = null, $height = null ) {
	$this->size = array(
		'width'  => (int) $width,
		'height' => (int) $height,
	);
	return true;
}