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

Sets or updates current image size.


Description Description


Parameters Parameters

$width

(int) (Optional)

Default value: false

$height

(int) (Optional)

Default value: false


Top ↑

Return Return

(true)


Top ↑

Source 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

Changelog
Version Description
3.5.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.