11

通常我使用imagecreatefromjpeg()and then getimagesize(),但是对于 Firefox 3 我需要绕过这个不同的地方。所以现在我正在使用imagecreatefromstring(),但我现在如何检索图像尺寸?

4

2 回答 2

19

imagesx()imagesy()函数似乎也适用于用 制作的图像imagecreatefromstring()

于 2008-09-20T20:38:14.730 回答
7

是啊!我刚刚在互联网上找到了答案:)

对于那些仍然感兴趣的人:

$image = imagecreatefromstring($img_str);
$w = imagesx($image);
$h = imagesy($image);
于 2008-09-20T20:38:44.150 回答