WP_Image_Editor::update_size() WordPress Method

The WP_Image_Editor::update_size() is a method of the WP_Image_Editor class. It is used to update the size of an image. It takes two parameters: the new width and the new height.

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


Top ↑

Return

(true)


Top ↑

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


Top ↑

Changelog

Changelog
VersionDescription
3.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.