您好,登錄后才能下訂單哦!
怎么在php中利用圖片處理函數獲取文件的擴展名?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
具體實現代碼如下:
image_type=image_type_to_mime_type(imagetype_png); //獲取png的mime類型 echo $image_type; //輸出結果 // $file = '1.jpg'; $image = imagecreatefromjpeg($file); header('content-type: ' . image_type_to_mime_type(imagetype_wbmp)); $fp=fopen($file,r); fpassthru($fp); image2wbmp($image,"1.bmp"); // output the stream directly //image_type_to_extension. (php教程 5). image_type_to_extension — 取得圖像類型的文件 后綴 ... warning. 本函數暫無文檔 $file_ext=image_type_to_extension("1.jpg"); echo $file_ext; // $filename="1.jpg"; //定義圖像文件 $size=getimagesize($filename); //獲取圖像的大小 $fp=fopen($filename,"rb"); //打開文件 if($size && $fp) //如果成功打開 { header("content-type: {$size['mime']}"); //輸出文件頭信息 fpassthru($fp); //輸出文件內容 exit; //中止操作 } else { echo "文件打開失敗,或者指定的不是圖像文件"; //輸出錯誤信息 }
看完上述內容,你們掌握怎么在php中利用圖片處理函數獲取文件的擴展名的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。