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

Sets current image size.


Parameters

$width int Optional

Default: null

$height int Optional

Default: null


Top ↑

Return

true


Top ↑

Source

File: wp-includes/class-wp-image-editor.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
3.5.0 Introduced.

Top ↑

User Contributed Notes

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