如何獲取圖像的寬度和高度?PHP圖像尺寸
我$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
感謝。
如何獲取圖像的寬度和高度?PHP圖像尺寸
我$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
感謝。
$variable = 'http://site.com/image.png';
$image = getimagesize($variable);
$width = $image[0];
$height = $image[1];
$type = $image[2];
getimagesize功能。也許它會幫助你。
它是你的網站嗎? – 2010-08-18 08:44:13
無論如何,這裏有一點點神奇:http://google.com/search?q=PHP+image+dimension – 2010-08-18 08:45:14
可能的重複[最快的方式來動態檢索圖像尺寸](http://stackoverflow.com/questions/ 3334097 /最快方式動態檢索圖像尺寸) – 2010-08-18 08:46:35