DEDECMS织梦模板如何去除缩略图水印 但是文章页大图依旧有水印
DEDECMS织梦模板如何去除缩略图水印 但是文章页大图依旧有水印
打开 /include/dialog/select_images.php 找到文件
<input type='checkbox' name='needwatermark' value='1' class='np' <?php if($photo_markup=='1') echo "checked"; ?> />水印
再下面添加 隐藏输入框
<input type="hidden" name="needwatermarks" >
然后打开/include/dialog/select_images_post.php 查找
if(in_array($imgfile_type,$cfg_photo_typenames))
{
WaterImg($fullfilename,'up');
}
把这个段代码换成
if(in_array($imgfile_type,$cfg_photo_typenames) && !isset($needwatermark))
{
WaterImg($fullfilename,'up');
}
这样每次上传缩略图图片的时候就不会有水印,添加文章图片就可以有水印了
打开 /include/dialog/select_images.php 找到文件
<input type='checkbox' name='needwatermark' value='1' class='np' <?php if($photo_markup=='1') echo "checked"; ?> />水印
再下面添加 隐藏输入框
<input type="hidden" name="needwatermarks" >
然后打开/include/dialog/select_images_post.php 查找
if(in_array($imgfile_type,$cfg_photo_typenames))
{
WaterImg($fullfilename,'up');
}
把这个段代码换成
if(in_array($imgfile_type,$cfg_photo_typenames) && !isset($needwatermark))
{
WaterImg($fullfilename,'up');
}
这样每次上传缩略图图片的时候就不会有水印,添加文章图片就可以有水印了