5
有沒有辦法使用imagecreatefromstring()
並得到某種方式什麼是圖像類型?php gd imagecreatefromstring()和圖像MIME類型
有沒有辦法使用imagecreatefromstring()
並得到某種方式什麼是圖像類型?php gd imagecreatefromstring()和圖像MIME類型
當您使用imagecreatefrom ...方法時,圖像將作爲未壓縮的位圖加載到內存中。此時並沒有真正的圖像類型。您可以將其保存爲您希望使用圖像...功能的任何類型。
$img = imagecreatefromstring($data);
imagepng($img, "file path and name");
imagedestroy($img);
http://us2.php.net/manual/en/function.imagecreatefromstring.php
確定,但從檢測的onload點有什麼樣的? – Marcin
你試圖達到的最終目標是什麼?你是否希望確定你所加載的內容實際上是一張圖片還是你真的需要知道加載的圖片的確切類型? – Bueller