Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通常我使用imagecreatefromjpeg()and then getimagesize(),但是对于 Firefox 3 我需要绕过这个不同的地方。所以现在我正在使用imagecreatefromstring(),但我现在如何检索图像尺寸?
imagecreatefromjpeg()
getimagesize()
imagecreatefromstring()
imagesx()和imagesy()函数似乎也适用于用 制作的图像imagecreatefromstring()。
imagesx()
imagesy()
是啊!我刚刚在互联网上找到了答案:)
对于那些仍然感兴趣的人:
$image = imagecreatefromstring($img_str); $w = imagesx($image); $h = imagesy($image);