设置SeaCMS支持WebP图片格式
1、允许后台下载WebP格式视频图片到本地
编辑 /include/image.class.php
文件第49行,将
if (strpos("|.jpg|.gif|.png|.bmp|.jpeg|",strtolower($fileext))===false){
修改为
if (strpos("|.jpg|.gif|.png|.bmp|.jpeg|.webp|",strtolower($fileext))===false){
编辑 /include/image.class.php
文件第127行,将
if ($fileext!="" && strpos("|.jpg|.gif|.png|.bmp|.jpeg|",strtolower($fileext))>0){
修改为
if ($fileext!="" && strpos("|.jpg|.gif|.png|.bmp|.jpeg|.webp|",strtolower($fileext))>0){
2、允许后台上传WebP格式视频图片
编辑 /admin/upload.php
文件第48行,将
var $allowExts = array('jpg', 'gif', 'png', 'rar', 'zip', 'bmp');
修改为
var $allowExts = array('jpg', 'gif', 'png', 'rar', 'zip', 'bmp', 'webp');