WP_Image_Editor_GD::update_size() WordPress Method

The WP_Image_Editor_GD::update_size() function is used to update the size of an image. This is useful when an image is being uploaded and the user wants to specify the size of the image. This function will take an array of width and height values and update the image accordingly.

WP_Image_Editor_GD::update_size( int $width = false, int $height = false ) #

Sets or updates current image size.


Parameters

$width

(int)(Optional)

Default value: false

$height

(int)(Optional)

Default value: false


Top ↑

Return

(true)


Top ↑

Source

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

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


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.