设为首页 加入收藏

TOP

Dedecmsv5.7整合ueditor 图片上传添加水印(一)
2019-08-23 00:41:49 】 浏览:75
Tags:Dedecmsv5.7 整合 ueditor 图片 上传 添加 水印

最近的项目是做dedecmsv5.7的二次开发,被要求上传的图片要加水印,百度ueditor编辑器不支持自动加水印,所以,找了很多资料整合记录一下,具体效果图

 

这里不仔细写dedecmsv5.7 整合ueditor编辑器了

 

1、打开ueditor目录下的php目录下的config.json配置文件

 

"iswatermark": false, /*图片加水印,默认不加水印*/

2、打开ueditor下的php文件夹里的action_upload.php,

(1)找到

case 'uploadimage':
        $config = array(
            "pathFormat" => $CONFIG['imagePathFormat'],
            "maxSize" => $CONFIG['imageMaxSize'],
            "allowFiles" => $CONFIG['imageAllowFiles']
        );
        $fieldName = $CONFIG['imageFieldName'];break;

在break;之前加入

/*判断session 是因为在前端是否添加水印,
  如果添加了水印,则设置session['iswatermark'] = 1,否则=0
*/
        if(isset($_SESSION['iswatermark'])){
            $watermark = $_SESSION['iswatermark'];
        }else{
            $watermark = $CONFIG['iswatermark'];
        }

(2)找到:

/* 生成上传实例对象并完成上传 */
$up = new Uploader($fieldName, $config, $base64);

改为:

/* 生成上传实例对象并完成上传 */
$up = new Uploader($fieldName, $config, $base64,$watermark);

3、打开ueditor下的php文件夹里的Uploader.class.php

(1)在构造函数__construct上面添加

private $water; //是否添加水印(属性)

 

(2)把构造函数改成

/**
     * 构造函数
     * @param string $fileField 表单名称
     * @param array $config 配置项
     * @param bool $base64 是否解析base64编码,可省略。若开启,则$fileField代表的是base64编码的字符串表单名
     */
    public function __construct($fileField, $config, $type = "upload",$watermark = false)

 

(3)在构造函数里面加入

$this->water = $watermark;

 

(4)在upFile方法里加入

//移动文件
        if (!(move_uploaded_file($file["tmp_name"], $this->filePath) && file_exists($this->filePath))) { //移动失败
            $this->stateInfo = $this->getStateInfo("ERROR_FILE_MOVE");
        } else { //移动成功
            if($this->water){ $this->watermark($this->filePath,$this->filePath); } $this->stateInfo = $this->stateMap[0];
        }

 

注:上面加粗的加入的代码。如果把这段代码放在移动文件上面,下面加水印的话找不见源图片

(5)在这个类文件里添加以下方法,实现图片添加水印

/**
     * 图片加水印
     * $source  string  图片资源
     * $target  string  添加水印后的名字
     * $w_pos   int     水印位置安排(1-10)【1:左头顶;2:中间头顶;3:右头顶...值空:随机位置】
     * $w_img   string  水印图片路径
     * $w_text  string  显示的文字
     * $w_font  int     字体大小
     * $w_color string  字体颜色
     *
     */
    public function watermark($source, $target = '', $w_pos = 9, $w_img = '', $w_text = '56nev.com',$w_font = 10, $w_color = '#CC0000')
    {
        $this->w_img = '../../../data/mark/mark.png';//水印图片
        $this->w_pos = 9 ;
        $this->w_minwidth = 100;//最少宽度
        $this->w_minheight = 20;//最少高度
        $this->w_quality = 100;//图像质量
        $this->w_pct = 85;//透明度

        $w_pos = $w_pos ? $w_pos : $this->w_pos;
        $w_img = $w_img ? $w_img : $this->w_img;
        if(!$this->check($source)) return false;
        if(!$target) $target = $source;
        $source_info = getimagesize($source);//图片信息
        $source_w  = $source_info[0];//图片宽度
        $source_h  = $source_info[1];//图片高度
        if($source_w < $this->w_minwidth || $source_h < $this->w_minheight) return false;
        switch($source_info[2]) { //图片类型
            case 1 : //GIF格式
                $source_img = imagecreatefromgif($source);
                break;
            case 2 : //JPG格式
                $source_img = imagecreatefromjpeg($source);
                break;
            case 3 : //PNG格式
                $source_img = imagecreatefrompng($source);
//imagealphablending($source_img,false); //关闭混色模式
                imagesavealpha($source_img,true); //设置标记以在保存 PNG 图像时保存完整的 alpha 通道信息(与单一透明色相反)
                break;
            default :
                return false;
        }
        if(!empty($w_img) && file_exists($w_
首页 上一页 1 2 3 下一页 尾页 1/3/3
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇PHP7 ?:和??的区别 下一篇PHP 扩展 trie-tree, swoole过滤..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目