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()それからを使用しますgetimagesize()が、Firefox3ではこれを別の方法で回避する必要があります。だから今私は使用してimagecreatefromstring()いますが、どうすれば画像の寸法を取得できますか?
imagecreatefromjpeg()
getimagesize()
imagecreatefromstring()
imagesx()とimagesy()関数は、で作成された画像でimagecreatefromstring()も機能するようです。
imagesx()
imagesy()
ああそうだ!私はちょうど1秒前にインターネットで答えを見つけました:)
まだ興味のある方へ:
$image = imagecreatefromstring($img_str); $w = imagesx($image); $h = imagesy($image);