翼度科技»论坛 编程开发 PHP 查看内容

Ueditor上传图片自动添加水印(通用图片文件)

6

主题

6

帖子

18

积分

新手上路

Rank: 1

积分
18
1、找到config.json,在配置文件中新增水印效果
  1. /* 上传图片配置项 */
  2.     "imageWater": "true",/*******************新增图片水印设置  这里是新增*/
  3.     "imageActionName": "uploadsimage", /* 执行上传图片的action名称 */
  4.     "imageFieldName": "upfile", /* 提交的图片表单名称 * /* 上传图片配置项 */
  5.     "imageWater": "true",/*******************新增图片水印设置  这里是新增*/
  6.     "imageActionName": "uploadsimage", /* 执行上传图片的action名称 */
  7.     "imageFieldName": "upfile", /* 提交的图片表单名称 */复制代码/复制代码
复制代码
 2、找到php目录下的 action_uploads.php 文件
  1. (1)在上传文件的时候读取配置文件
  2. /* 上传配置 */
  3. $base64 = "uploads";
  4. switch (htmlspecialchars($_GET['action'])) {
  5.     case 'uploadsimage':
  6.         $config = array(
  7.             "pathFormat" => $CONFIG['imagePathFormat'],
  8.             "maxSize" => $CONFIG['imageMaxSize'],
  9.             "allowFiles" => $CONFIG['imageAllowFiles']
  10.         );
  11.         $watermark = $CONFIG['imageWater']; //************************新增读取参数
  12.         $fieldName = $CONFIG['imageFieldName'];
  13.         break;
  14.     case 'uploadsscrawl':
  15. (2)在实例化的时候传入配置参数
  16. $up = new uploadser($fieldName, $config, $base64,$watermark); // 最后的参数是新增
复制代码
3、找到php同级目录下的类 uploadser.class.php 
 
  1. (1)实例化类的时候新增私有属性
  2. class uploadser
  3. {
  4.     private $water; //是否添加水印(属性) *******************新增
  5. (2)在构造函数中添加传递的参数,新增最后一个参数
  6. public function __construct($fileField, $config, $type = "uploads",$watermark = false)
  7.     {
  8.         $this->water = $watermark;
  9.         $this->fileField = $fileField;
  10. (3)在文件上传完成之后 upFile方法 的最后添加
  11.     //移动文件
  12.         if (!(move_uploadsed_file($file["tmp_name"], $this->filePath) && file_exists($this->filePath))) { //移动失败
  13.             $this->stateInfo = $this->getStateInfo("ERROR_FILE_MOVE");
  14.         } else { //移动成功
  15.             $this->stateInfo = $this->stateMap[0];
  16.         }
  17.         //********************新增
  18.         if( $this->water ){
  19.             $this->watermark($this->filePath,$this->filePath);
  20.         }
  21. (4)添加水印函数和检测文件是否存在函数
  22. /*
  23.     * 图片加水印
  24.     * $source  string  图片资源
  25.     * $target  string  添加水印后的名字
  26.     * $w_pos   int     水印位置 具体看代码
  27.     * $w_img   string  水印图片路径
  28.     * $w_text  string  显示的文字
  29.     * $w_font  int     字体大小
  30.     * $w_color string  字体颜色
  31.     */
  32.     private function watermark($source, $target = '', $w_pos = '', $w_img = '', $w_text = 'zhiwuhao.com',$w_font = 10, $w_color = '#CC0000') {
  33.         $this->w_img = 'logo.png';//水印图片的路径
  34.         $this->w_pos = 9;
  35.         $this->w_minwidth = 400;//最少宽度
  36.         $this->w_minheight = 200;//最少高度
  37.         $this->w_quality = 80;//图像质量
  38.         $this->w_pct = 85;//透明度
  39.         $w_pos = $w_pos ? $w_pos : $this->w_pos;
  40.         $w_img = $w_img ? $w_img : $this->w_img;
  41.         if(!$this->check($source)) return false;
  42.         if(!$target) $target = $source;
  43.         $source_info = getimagesize($source);//图片信息
  44.         $source_w  = $source_info[0];//图片宽度
  45.         $source_h  = $source_info[1];//图片高度
  46.         if($source_w < $this->w_minwidth || $source_h < $this->w_minheight) return false;
  47.         switch($source_info[2]) { //图片类型
  48.             case 1 : //GIF格式
  49.                 $source_img = imagecreatefromgif($source);
  50.                 break;
  51.             case 2 : //JPG格式
  52.                 $source_img = imagecreatefromjpeg($source);
  53.                 break;
  54.             case 3 : //PNG格式
  55.                 $source_img = imagecreatefrompng($source);
  56.                 //imagealphablending($source_img,false); //关闭混色模式
  57.                 imagesavealpha($source_img,true); //设置标记以在保存 PNG 图像时保存完整的 alpha 通道信息(与单一透明色相反)
  58.                 break;
  59.             default :
  60.                 return false;
  61.         }
  62.         if(!empty($w_img) && file_exists($w_img)) { //水印图片有效
  63.             $ifwaterimage = 1; //标记
  64.             $water_info  = getimagesize($w_img);
  65.             $width    = $water_info[0];
  66.             $height    = $water_info[1];
  67.             switch($water_info[2]) {
  68.                 case 1 :
  69.                     $water_img = imagecreatefromgif($w_img);
  70.                     break;
  71.                 case 2 :
  72.                     $water_img = imagecreatefromjpeg($w_img);
  73.                     break;
  74.                 case 3 :
  75.                     $water_img = imagecreatefrompng($w_img);
  76.                     imagealphablending($w_img,false);
  77.                     imagesavealpha($w_img,true);
  78.                     break;
  79.                 default :
  80.                     return;
  81.             }
  82.         }else{
  83.             $ifwaterimage = 0;
  84.             $temp = imagettfbbox(ceil($w_font*2.5), 0, '../../texb.ttf', $w_text); //imagettfbbox返回一个含有 8 个单元的数组表示了文本外框的四个角
  85.             $width = $temp[2] - $temp[6];
  86.             $height = $temp[3] - $temp[7];
  87.             unset($temp);
  88.         }
  89.         switch($w_pos) {
  90.             case 1:
  91.                 $wx = 5;
  92.                 $wy = 5;
  93.                 break;
  94.             case 2:
  95.                 $wx = ($source_w - $width) / 2;
  96.                 $wy = 0;
  97.                 break;
  98.             case 3:
  99.                 $wx = $source_w - $width;
  100.                 $wy = 0;
  101.                 break;
  102.             case 4:
  103.                 $wx = 0;
  104.                 $wy = ($source_h - $height) / 2;
  105.                 break;
  106.             case 5:
  107.                 $wx = ($source_w - $width) / 2;
  108.                 $wy = ($source_h - $height) / 2;
  109.                 break;
  110.             case 6:
  111.                 $wx = $source_w - $width;
  112.                 $wy = ($source_h - $height) / 2;
  113.                 break;
  114.             case 7:
  115.                 $wx = 0;
  116.                 $wy = $source_h - $height;
  117.                 break;
  118.             case 8:
  119.                 $wx = ($source_w - $width) / 2;
  120.                 $wy = $source_h - $height;
  121.                 break;
  122.             case 9:
  123.                 $wx = $source_w - ($width+5);
  124.                 $wy = $source_h - ($height+5);
  125.                 break;
  126.             case 10:
  127.                 $wx = rand(0,($source_w - $width));
  128.                 $wy = rand(0,($source_h - $height));
  129.                 break;
  130.             default:
  131.                 $wx = rand(0,($source_w - $width));
  132.                 $wy = rand(0,($source_h - $height));
  133.                 break;
  134.         }
  135.         if($ifwaterimage) {
  136.             if($water_info[2] == 3) {
  137.                 imagecopy($source_img, $water_img, $wx, $wy, 0, 0, $width, $height);
  138.             }else{
  139.                 imagecopymerge($source_img, $water_img, $wx, $wy, 0, 0, $width, $height, $this->w_pct);
  140.             }
  141.         }else{
  142.             if(!empty($w_color) && (strlen($w_color)==7)) {
  143.                 $r = hexdec(substr($w_color,1,2));
  144.                 $g = hexdec(substr($w_color,3,2));
  145.                 $b = hexdec(substr($w_color,5));
  146.             }else{
  147.                 return;
  148.             }
  149.             imagestring($source_img,$w_font,$wx,$wy,$w_text,imagecolorallocate($source_img,$r,$g,$b));
  150.         }
  151.         switch($source_info[2]) {
  152.             case 1 :
  153.                 imagegif($source_img, $target);
  154.                 //GIF 格式将图像输出到浏览器或文件(欲输出的图像资源, 指定输出图像的文件名)
  155.                 break;
  156.             case 2 :
  157.                 imagejpeg($source_img, $target, $this->w_quality);
  158.                 break;
  159.             case 3 :
  160.                 imagepng($source_img, $target);
  161.                 break;
  162.             default :
  163.                 return;
  164.         }
  165.         if(isset($water_info)){
  166.             unset($water_info);
  167.         }
  168.         if(isset($water_img)) {
  169.             imagedestroy($water_img);
  170.         }
  171.         unset($source_info);
  172.         imagedestroy($source_img);
  173.         return true;
  174.     }
  175.     /**
  176.      * 检测文件是否存在
  177.      * @param $image
  178.      * @return bool
  179.      */
  180.     public function check($image){
  181.         return extension_loaded('gd') && preg_match("/\.(jpg|jpeg|gif|png)/i", $image, $m) && file_exists($image) && function_exists('imagecreatefrom'.($m[1] == 'jpg' ? 'jpeg' : $m[1]));
  182.     }
  183. 复制代码
复制代码
注意:以上代码会提示一个错误
imagealphablending() expects parameter 1 to be resource
imagesavealpha() expects parameter 1 to be resource
在这个位置:

这个错误是因为 imagealphablending() 和 imagesavealpha() 这两个函数需要传递一个图像资源作为参数,但是在代码中传递的参数 $w_img 是一个字符串(水印图片的路径),而不是一个图像资源。
你需要将这两个函数的参数改为 $water_img,也就是水印图片创建的图像资源。同时,你需要修改以下代码:
$water_img = imagecreatefrompng($w_img);
imagealphablending($water_img, false);
imagesavealpha($water_img, true);
修改后的代码如下:
  1. $water_img = imagecreatefrompng($w_img);
  2. imagealphablending($source_img, false);
  3. imagesavealpha($source_img, true);
复制代码
 
文章来源:www.zhiwuhao.com-植物号

来源:https://www.cnblogs.com/yuesha/p/17530684.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x

举报 回复 使用道具