wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_shrink_dimensions › WordPress Function

Seit2.0.0
Veraltet3.0.0
wp_shrink_dimensions ( $width, $height, $wmax = 128, $hmax = 96 )
Parameter: (4)
  • (int) $width Current width of the image
    Erforderlich: Ja
  • (int) $height Current height of the image
    Erforderlich: Ja
  • (int) $wmax Maximum wanted width
    Erforderlich: Nein
    Standard: 128
  • (int) $hmax Maximum wanted height
    Erforderlich: Nein
    Standard: 96
Siehe:
Gibt zurück:
  • (array) Shrunk dimensions (width, height).
Definiert in:
Codex:

Calculates the new dimensions for a downsampled image.



Quellcode

function wp_shrink_dimensions( $width, $height, $wmax = 128, $hmax = 96 ) {
	_deprecated_function( __FUNCTION__, '3.0.0', 'wp_constrain_dimensions()' );
	return wp_constrain_dimensions( $width, $height, $wmax, $hmax );
}