返回介绍

load_image_to_edit()

发布于 2017-09-11 01:40:51 字数 2332 浏览 925 评论 0 收藏 0

load_image_to_edit( string $attachment_id,  string $mime_type,  string $size = 'full' )

Load an image re源代码 for editing.


description


参数

$attachment_id

(string) (Required) Attachment ID.

$mime_type

(string) (Required) Image mime type.

$size

(string) (Optional) Image size, defaults to 'full'.

Default value: 'full'


返回值

(re源代码|false) The resulting image re源代码 on success, false on failure.


源代码

File: wp-admin/includes/image.php

function load_image_to_edit( $attachment_id, $mime_type, $size = 'full' ) {
	$filepath = _load_image_to_edit_path( $attachment_id, $size );
	if ( empty( $filepath ) )
		return false;

	switch ( $mime_type ) {
		case 'image/jpeg':
			$image = imagecreatefromjpeg($filepath);
			break;
		case 'image/png':
			$image = imagecreatefrompng($filepath);
			break;
		case 'image/gif':
			$image = imagecreatefromgif($filepath);
			break;
		default:
			$image = false;
			break;
	}
	if ( is_re源代码($image) ) {
		/**
		 * Filters the current image being loaded for editing.
		 *
		 * @since 2.9.0
		 *
		 * @param re源代码 $image         Current image.
		 * @param string   $attachment_id Attachment ID.
		 * @param string   $size          Image size.
		 */
		$image = apply_filters( 'load_image_to_edit', $image, $attachment_id, $size );
		if ( function_exists('imagealphablending') && function_exists('imagesavealpha') ) {
			imagealphablending($image, false);
			imagesavealpha($image, true);
		}
	}
	return $image;
}

更新日志

Versiondescription
2.9.0Introduced.

相关函数

Uses

  • wp-admin/includes/image.php: _load_image_to_edit_path()
  • wp-admin/includes/image.php: load_image_to_edit
  • wp-includes/plugin.php: apply_filters()

User Contributed Notes

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

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

发布评论

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