重慶分公司,新征程啟航
為企業(yè)提供網(wǎng)站建設(shè)、域名注冊(cè)、服務(wù)器等服務(wù)
為企業(yè)提供網(wǎng)站建設(shè)、域名注冊(cè)、服務(wù)器等服務(wù)
php webp轉(zhuǎn)換jpg的方法:1、使用“webptojpgapi”方法將webp轉(zhuǎn)換成jpg格式;2、調(diào)用系統(tǒng)庫(kù)來(lái)實(shí)現(xiàn)webp轉(zhuǎn)換jpg,代碼如“@system("dwebp $img_pathwebp -o $pic_path"”。
創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、烏什網(wǎng)絡(luò)推廣、微信小程序開發(fā)、烏什網(wǎng)絡(luò)營(yíng)銷、烏什企業(yè)策劃、烏什品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們大的嘉獎(jiǎng);創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供烏什建站搭建服務(wù),24小時(shí)服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com
推薦:《PHP視頻教程》
php webp轉(zhuǎn)jpg
最近做個(gè)項(xiàng)目,涉及到摳圖,
但是webp格式的到火狐上顯示不了
解決方案:
//webp轉(zhuǎn)換成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); }
官網(wǎng)上都有說(shuō)明,具體就是這樣了,
但是這樣有個(gè)不便之處,收費(fèi),尼瑪,坑爹的,所以采用了另外一種方式。
調(diào)用系統(tǒng)庫(kù),代碼如下,趕腳很高大上的樣子
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); }