返回介绍

stream_preview_image()

发布于 2017-09-11 10:29:41 字数 2130 浏览 982 评论 0 收藏 0

stream_preview_image( int $post_id )

Streams image in post to browser, along with enqueued changes in $_REQUEST[‘history’]


description


参数

$post_id

(int) (Required)


返回值

(bool)


源代码

File: wp-admin/includes/image-edit.php

function stream_preview_image( $post_id ) {
	$post = get_post( $post_id );

	wp_raise_memory_limit( 'admin' );

	$img = wp_get_image_editor( _load_image_to_edit_path( $post_id ) );

	if ( is_wp_error( $img ) ) {
		return false;
	}

	$changes = !empty($_REQUEST['history']) ? json_decode( wp_unslash($_REQUEST['history']) ) : null;
	if ( $changes )
		$img = image_edit_apply_changes( $img, $changes );

	// Scale the image.
	$size = $img->get_size();
	$w = $size['width'];
	$h = $size['height'];

	$ratio = _image_get_preview_ratio( $w, $h );
	$w2 = max ( 1, $w * $ratio );
	$h2 = max ( 1, $h * $ratio );

	if ( is_wp_error( $img->resize( $w2, $h2 ) ) )
		return false;

	return wp_stream_image( $img, $post->post_mime_type, $post_id );
}

Collapse full 源代码 code View on Trac


相关函数

Uses

  • wp-includes/functions.php: wp_raise_memory_limit()
  • wp-admin/includes/image-edit.php: image_edit_apply_changes()
  • wp-admin/includes/image-edit.php: wp_stream_image()
  • wp-admin/includes/image.php: _load_image_to_edit_path()
  • wp-includes/compat.php: json_decode()
  • wp-includes/formatting.php: wp_unslash()
  • wp-includes/media.php: wp_get_image_editor()
  • wp-includes/post.php: get_post()
  • wp-includes/load.php: is_wp_error()
  • Show 4 more uses Hide more uses

Used By

  • wp-admin/includes/ajax-actions.php: wp_ajax_imgedit_preview()

User Contributed Notes

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

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

发布评论

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