WP_Image_Editor::update_size( int $width = null, int $height = null )

Sets current image size.


Parameters

$width

(int) (Optional)

Default value: null

$height

(int) (Optional)

Default value: null


Return

(true)


Source

File: wp-includes/class-wp-image-editor.php

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


Changelog

Changelog
Version Description
WP-3.5.0 Introduced.