wpseek.com
				A WordPress-centric search engine for devs and theme authors
			wp_expand_dimensions › WordPress Function
Since2.9.0
Deprecatedn/a
› wp_expand_dimensions ( $example_width, $example_height, $max_width, $max_height )
| Parameters: (4) | 
 | 
| See: | |
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Based on a supplied width/height example, returns the biggest possible dimensions based on the max width/height.
Source
function wp_expand_dimensions( $example_width, $example_height, $max_width, $max_height ) {
	$example_width  = (int) $example_width;
	$example_height = (int) $example_height;
	$max_width      = (int) $max_width;
	$max_height     = (int) $max_height;
	return wp_constrain_dimensions( $example_width * 1000000, $example_height * 1000000, $max_width, $max_height );
}