0

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

我有$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

谢谢。

4

2 回答 2

2
$variable = 'http://site.com/image.png';
$image    = getimagesize($variable);
$width    = $image[0];
$height   = $image[1];
$type     = $image[2];
于 2010-08-18T08:53:43.167 回答
1

获取图像大小函数。也许它会帮助你。

于 2010-08-18T08:46:07.240 回答