返回介绍

image_make_intermediate_size()

发布于 2017-09-11 01:00:51 字数 2081 浏览 964 评论 0 收藏 0

image_make_intermediate_size( string $file,  int $width,  int $height,  bool $crop = false )

Resizes an image to make a thumbnail or intermediate size.


description

The returned array has the file size, the image width, and image height. The ‘image_make_intermediate_size’ filter can be used to hook in and change the values of the returned array. The only parameter is the resized file path.


参数

$file

(string) (Required) File path.

$width

(int) (Required) Image width.

$height

(int) (Required) Image height.

$crop

(bool) (Optional) Whether to crop image to specified width and height or resize.

Default value: false


返回值

(false|array) False, if no image was created. Metadata array on success.


源代码

File: wp-includes/media.php

function image_make_intermediate_size( $file, $width, $height, $crop = false ) {
	if ( $width || $height ) {
		$editor = wp_get_image_editor( $file );

		if ( is_wp_error( $editor ) || is_wp_error( $editor->resize( $width, $height, $crop ) ) )
			return false;

		$resized_file = $editor->save();

		if ( ! is_wp_error( $resized_file ) && $resized_file ) {
			unset( $resized_file['path'] );
			return $resized_file;
		}
	}
	return false;
}

更新日志

Versiondescription
2.5.0Introduced.

相关函数

Uses

  • wp-includes/media.php: wp_get_image_editor()
  • wp-includes/load.php: is_wp_error()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文