您好,登錄后才能下訂單哦!
小編給大家分享一下php webp轉換jpg的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
php webp轉換jpg的方法:1、使用“webptojpgapi”方法將webp轉換成jpg格式;2、調用系統庫來實現webp轉換jpg,代碼如“@system("dwebp $img_pathwebp -o $pic_path"”。
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的方法的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。