[織夢技巧]DedeCMS 上傳縮略圖啟用水印的方法

閱讀 ?·? 發(fā)布日期 2019-06-24 17:18 ?·? admin

打開include\FCKeditor\editor\dialog\dede_image.php ,第117行,原文:

 

以下為引用的內(nèi)容:

if (in_array($imgfile_type,$cfg_photo_typenames))   
{
    WaterImg($fullfilename,'up');
}

  修改為:

 

以下為引用的內(nèi)容:

if ($needwatermark=="1" && in_array($imgfile_type,$cfg_photo_typenames))   //修改 by nic
{
     WaterImg($fullfilename,'up');
     WaterImg($full_litfilename,'up'); // add by nic
}