get_udims()WP 2.0.0

Deprecated from version 3.5.0. It is no longer supported and can be removed in future releases. Use wp_constrain_dimensions() instead.

Calculated the new dimensions for a downsampled image.

No Hooks.

Return

Array. Shrunk dimensions (width, height).

Usage

get_udims( $width, $height );
$width(int) (required)
Current width of the image
$height(int) (required)
Current height of the image

Notes

Changelog

Since 2.0.0 Introduced.
Deprecated since 3.5.0 Use wp_constrain_dimensions()

get_udims() code WP 6.4.3

function get_udims( $width, $height ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'wp_constrain_dimensions()' );
	return wp_constrain_dimensions( $width, $height, 128, 96 );
}