seacms:设置支持webp图片格式

栏目:Other 来源:网络 关注:0 时间:2022-09-23

一、允许后台下载WebP格式视频图片到本地

1、打开“/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){

2、打开“/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){

二、允许后台上传WebP格式视频图片

打开“/admin/upload.php”,将48行
var $allowExts = array('jpg', 'gif',  'png', 'rar', 'zip', 'bmp');
修改为
var $allowExts = array('jpg', 'gif',  'png', 'rar', 'zip', 'bmp', 'webp');

本文标题:seacms:设置支持webp图片格式
本文地址:http://www.q0738.com/other/19238.html

上一篇:Centos系统中安装宝塔Linux面板的详细步骤 下一篇:没有了