php webp轉換jpg的方法:1.使用「webptojpgapi」方法將webp轉換成jpg格式;2、呼叫系統函式庫來實作webp轉換jpg,程式碼如「@system("dwebp $img_pathwebp -o $pic_path"」。
推薦:《PHP影片教學》
php webp轉jpg
#最近做個項目,涉及到摳圖,
但是webp格式的到火狐上顯示不了
解決方案:
//webp转换成jpg格式 function webptojpgapi($inputurl,$inputname){ $apiurl = "https://api.cloudconvert.com/convert?apikey=[自己的apikey]&input=download&filename=$inputname&download=false&save=true&inputformat=webp&outputformat=jpg&file=$inputurl"; $res = file_get_contents($apiurl); $res = json_decode($res,true); return $res['output']['url'].'/'.str_replace('webp','jpg',$inputname); }
官網上都有說明,具體就是這樣了,
但是這樣有個不便之處,收費,尼瑪,坑爹的,所以採用了另外一種方式。
調用系統庫,代碼如下,趕腳很高大上的樣子
if($ext=='webp'){ $img_pathwebp = "Runtime/yy_".time().rand_string(3).'.png'; @file_put_contents($img_pathwebp, file_get_contents($img_path)); $img_pathwebp = realpath($img_pathwebp); $pic_path = $img_pathwebp ; @system("dwebp $img_pathwebp -o $pic_path", $retval); }
以上是php webp如何轉換jpg的詳細內容。更多資訊請關注PHP中文網其他相關文章!