Wordpress中图像的文件大小

时间:2014-07-31 10:29:23

标签: php wordpress image-processing rss filesize

我需要在Wordpress中计算图像的文件大小。我用这个函数检索图像URL:

$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );

<?php echo $image[0]; ?>

我打印图片网址。

如何检索文件大小并进行打印?

Here是feed-rss2.php文件

由于

1 个答案:

答案 0 :(得分:1)

这应该有效:

$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
$img = get_headers($image[0], 1);
echo $img["Content-Length"]/1024;

以上将以kb打印图像的大小。