在php中使用imagick處理圖片格式轉(zhuǎn)換肤晓,將圖片格式轉(zhuǎn)為webp
$image = new Imagick($File);
$image->setImageFormat("webp");
可能出現(xiàn)下面的錯誤
Fatal error: Uncaught exception 'ImagickException' with message 'Unable to set image format'
需要安裝webp環(huán)境libwebp-dev,執(zhí)行cwebp命令可以查看是否安裝了webp结缚,安裝后依然報錯店枣,執(zhí)行一下imagemagic的命令查看是否支持webp
convert -list format
如果沒有webp就需要重新build imagemagic榆浓,mac下執(zhí)行命令
brew reinstall imagemagick --with-webp
重新安裝后再執(zhí)行查看菩混,發(fā)現(xiàn)已經(jīng)支持webp了。