wp_expand_dimensions

函数
wp_expand_dimensions ( $example_width, $example_height, $max_width, $max_height )
参数
  • (int) $example_width The width of an example embed.
    Required:
  • (int) $example_height The height of an example embed.
    Required:
  • (int) $max_width The maximum allowed width.
    Required:
  • (int) $max_height The maximum allowed height.
    Required:
返回值
  • (int[]) { An array of maximum width and height values. @type int $0 The maximum width in pixels. @type int $1 The maximum height in pixels. }
相关
  • wp_constrain_dimensions()
定义位置
相关方法
wp_shrink_dimensionswp_constrain_dimensionswp_get_audio_extensionswp_apply_dimensions_supportwp_image_src_get_dimensions
引入
2.9.0
弃用
-

wp_expand_dimensions: 这是一个WordPress的函数,用来扩展图片的尺寸。它接收图片的宽度和高度,以及最大宽度和高度,并返回一个包含图片新宽度和高度的数组: 这个函数对于缩放图片以适应特定的尺寸是很有用的,比如在博客文章或网页中。

基于提供的宽度/高度的例子,返回基于最大宽度/高度的最大可能尺寸。

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 );
}

常见问题

FAQs
查看更多 >