PHP图像维度

时间:2010-08-18 08:43:20

标签: php image dimension

如何获得图像的宽度和高度?

我有$variable = 'http://site.com/image.png"

希望将此图片的宽度设为$width,将高度设为$height

像: $variable = 'http://site.com/image.png"

$width = '300'; // image width is 300px
$height = '500'; // height is 500px

感谢。

2 个答案:

答案 0 :(得分:2)

$variable = 'http://site.com/image.png';
$image    = getimagesize($variable);
$width    = $image[0];
$height   = $image[1];
$type     = $image[2];

答案 1 :(得分:1)

getimagesize功能。也许它会帮助你。