织梦缩略图不加水印 ,文章页图片加水印的方法

我们在使用织梦网站系统时,有时为了防止同行盗图,往往会为图片添加水印,但添加水印后缩略图却显得不好看,那么有什么方法使得织梦缩略图不加水印 ,文章页图片加水印呢?

织梦缩略图不加水印 ,文章页图片加水印的方法
解决方法:

  1. 打开织梦 include/dialog/select_images.php 文件

    找到

    1
    <input type='checkbox' name='needwatermark' value='1' class='np' <?php if($photo_markup=='1') echo "checked"; ?> />水印

    修改为

    1
    <input type='checkbox' name='needwatermark' value='1' class='np' />水印

    解析:这样做的目的是为了控制水印默认为未选中状态

  2. 打开 include/dialog/select_images_post.php 文件

    找到

    1
    2
    3
    4
    5
    6
    7
    if(in_array($imgfile_type, $cfg_photo_typenames))

    {

    WaterImg($fullfilename,'up');

    }

    修改为

    1
    2
    3
    4
    5
    6
    7
    if(in_array($imgfile_type,$cfg_photo_typenames) && isset($needwatermark))

    {

    WaterImg($fullfilename,'up');

    }