设为首页 加入收藏

TOP

Ueditor上传图片自动添加水印(通用图片文件)(一)
2023-07-23 13:25:13 】 浏览:41
Tags:Ueditor 加水印 通用图 文件

1、找到config.json,在配置文件中新增水印效果

 /* 上传图片配置项 */
    "imageWater": "true",/*******************新增图片水印设置  这里是新增*/
    "imageActionName": "uploadsimage", /* 执行上传图片的action名称 */
    "imageFieldName": "upfile", /* 提交的图片表单名称 * /* 上传图片配置项 */
    "imageWater": "true",/*******************新增图片水印设置  这里是新增*/
    "imageActionName": "uploadsimage", /* 执行上传图片的action名称 */
    "imageFieldName": "upfile", /* 提交的图片表单名称 */复制代码/复制代码

 2、找到php目录下的 action_uploads.php 文件

(1)在上传文件的时候读取配置文件
/* 上传配置 */
$base64 = "uploads";
switch (htmlspecialchars($_GET['action'])) {
    case 'uploadsimage':
        $config = array(
            "pathFormat" => $CONFIG['imagePathFormat'],
            "maxSize" => $CONFIG['imageMaxSize'],
            "allowFiles" => $CONFIG['imageAllowFiles']
        );
        $watermark = $CONFIG['imageWater']; //************************新增读取参数
        $fieldName = $CONFIG['imageFieldName'];
        break;
    case 'uploadsscrawl':
 
 
(2)在实例化的时候传入配置参数
$up = new uploadser($fieldName, $config, $base64,$watermark); // 最后的参数是新增

3、找到php同级目录下的类 uploadser.class.php 

 

(1)实例化类的时候新增私有属性
class uploadser
{
    private $water; //是否添加水印(属性) *******************新增
 
 
 
(2)在构造函数中添加传递的参数,新增最后一个参数
public function __construct($fileField, $config, $type = "uploads",$watermark = false)
    {
        $this->water = $watermark;
        $this->fileField = $fileField;
 
(3)在文件上传完成之后 upFile方法 的最后添加
    //移动文件
        if (!(move_uploadsed_file($file["tmp_name"], $this->filePath) && file_exists($this->filePath))) { //移动失败
            $this->stateInfo = $this->getStateInfo("ERROR_FILE_MOVE");
        } else { //移动成功
            $this->stateInfo = $this->stateMap[0];
        }
        //********************新增
        if( $this->water ){
            $this->watermark($this->filePath,$this->filePath);
        }
 
(4)添加水印函数和检测文件是否存在函数
 /*
    * 图片加水印
    * $source  string  图片资源
    * $target  string  添加水印后的名字
    * $w_pos   int     水印位置 具体看代码
    * $w_img   string  水印图片路径
    * $w_text  string  显示的文字
    * $w_font  int     字体大小
    * $w_color string  字体颜色
    */
    private function watermark($source, $target = '', $w_pos = '', $w_img = '', $w_text = 'zhiwuhao.com',$w_font = 10, $w_color = '#CC0000') {
        $this->w_img = 'logo.png';//水印图片的路径
        $this->w_pos = 9;
        $this->w_minwidth = 400;//最少宽度
        $this->w_minheight = 200;//最少高度
        $this->w_quality = 80;//图像质量
        $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_img)) { //水印图片有效
            $ifwaterimage = 1; //标记
            $water_info  = g
首页 上一页 1 2 下一页 尾页 1/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇2023新版网盘云存储系统网站PHP源.. 下一篇webman

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目