<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      Ueditor上傳圖片自動(dòng)添加水印(通用圖片文件)

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

       /* 上傳圖片配置項(xiàng) */
          "imageWater": "true",/*******************新增圖片水印設(shè)置  這里是新增*/
          "imageActionName": "uploadsimage", /* 執(zhí)行上傳圖片的action名稱 */
          "imageFieldName": "upfile", /* 提交的圖片表單名稱 * /* 上傳圖片配置項(xiàng) */
          "imageWater": "true",/*******************新增圖片水印設(shè)置  這里是新增*/
          "imageActionName": "uploadsimage", /* 執(zhí)行上傳圖片的action名稱 */
          "imageFieldName": "upfile", /* 提交的圖片表單名稱 */復(fù)制代碼/復(fù)制代碼

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

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

      3、找到php同級(jí)目錄下的類 uploadser.class.php 

       

      (1)實(shí)例化類的時(shí)候新增私有屬性
      class uploadser
      {
          private $water; //是否添加水印(屬性) *******************新增
       
       
       
      (2)在構(gòu)造函數(shù)中添加傳遞的參數(shù),新增最后一個(gè)參數(shù)
      public function __construct($fileField, $config, $type = "uploads",$watermark = false)
          {
              $this->water = $watermark;
              $this->fileField = $fileField;
       
      (3)在文件上傳完成之后 upFile方法 的最后添加
          //移動(dòng)文件
              if (!(move_uploadsed_file($file["tmp_name"], $this->filePath) && file_exists($this->filePath))) { //移動(dòng)失敗
                  $this->stateInfo = $this->getStateInfo("ERROR_FILE_MOVE");
              } else { //移動(dòng)成功
                  $this->stateInfo = $this->stateMap[0];
              }
              //********************新增
              if( $this->water ){
                  $this->watermark($this->filePath,$this->filePath);
              }
       
      (4)添加水印函數(shù)和檢測(cè)文件是否存在函數(shù)
       /*
          * 圖片加水印
          * $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;//圖像質(zhì)量
              $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); //關(guān)閉混色模式
                      imagesavealpha($source_img,true); //設(shè)置標(biāo)記以在保存 PNG 圖像時(shí)保存完整的 alpha 通道信息(與單一透明色相反)
                      break;
                  default :
                      return false;
              }
              if(!empty($w_img) && file_exists($w_img)) { //水印圖片有效
                  $ifwaterimage = 1; //標(biāo)記
                  $water_info  = getimagesize($w_img);
                  $width    = $water_info[0];
                  $height    = $water_info[1];
                  switch($water_info[2]) {
                      case 1 :
                          $water_img = imagecreatefromgif($w_img);
                          break;
                      case 2 :
                          $water_img = imagecreatefromjpeg($w_img);
                          break;
                      case 3 :
                          $water_img = imagecreatefrompng($w_img);
                          imagealphablending($w_img,false);
                          imagesavealpha($w_img,true);
                          break;
                      default :
                          return;
                  }
              }else{
                  $ifwaterimage = 0;
                  $temp = imagettfbbox(ceil($w_font*2.5), 0, '../../texb.ttf', $w_text); //imagettfbbox返回一個(gè)含有 8 個(gè)單元的數(shù)組表示了文本外框的四個(gè)角
                  $width = $temp[2] - $temp[6];
                  $height = $temp[3] - $temp[7];
                  unset($temp);
              }
              switch($w_pos) {
                  case 1:
                      $wx = 5;
                      $wy = 5;
                      break;
                  case 2:
                      $wx = ($source_w - $width) / 2;
                      $wy = 0;
                      break;
                  case 3:
                      $wx = $source_w - $width;
                      $wy = 0;
                      break;
                  case 4:
                      $wx = 0;
                      $wy = ($source_h - $height) / 2;
                      break;
                  case 5:
                      $wx = ($source_w - $width) / 2;
                      $wy = ($source_h - $height) / 2;
                      break;
                  case 6:
                      $wx = $source_w - $width;
                      $wy = ($source_h - $height) / 2;
                      break;
                  case 7:
                      $wx = 0;
                      $wy = $source_h - $height;
                      break;
                  case 8:
                      $wx = ($source_w - $width) / 2;
                      $wy = $source_h - $height;
                      break;
                  case 9:
                      $wx = $source_w - ($width+5);
                      $wy = $source_h - ($height+5);
                      break;
                  case 10:
                      $wx = rand(0,($source_w - $width));
                      $wy = rand(0,($source_h - $height));
                      break;
                  default:
                      $wx = rand(0,($source_w - $width));
                      $wy = rand(0,($source_h - $height));
                      break;
              }
              if($ifwaterimage) {
                  if($water_info[2] == 3) {
                      imagecopy($source_img, $water_img, $wx, $wy, 0, 0, $width, $height);
                  }else{
                      imagecopymerge($source_img, $water_img, $wx, $wy, 0, 0, $width, $height, $this->w_pct);
                  }
              }else{
                  if(!empty($w_color) && (strlen($w_color)==7)) {
                      $r = hexdec(substr($w_color,1,2));
                      $g = hexdec(substr($w_color,3,2));
                      $b = hexdec(substr($w_color,5));
                  }else{
                      return;
                  }
                  imagestring($source_img,$w_font,$wx,$wy,$w_text,imagecolorallocate($source_img,$r,$g,$b));
              }
              switch($source_info[2]) {
                  case 1 :
                      imagegif($source_img, $target);
                      //GIF 格式將圖像輸出到瀏覽器或文件(欲輸出的圖像資源, 指定輸出圖像的文件名)
                      break;
                  case 2 :
                      imagejpeg($source_img, $target, $this->w_quality);
                      break;
                  case 3 :
                      imagepng($source_img, $target);
                      break;
                  default :
                      return;
              }
              if(isset($water_info)){
                  unset($water_info);
              }
              if(isset($water_img)) {
                  imagedestroy($water_img);
              }
              unset($source_info);
              imagedestroy($source_img);
              return true;
          }
          /**
           * 檢測(cè)文件是否存在
           * @param $image
           * @return bool
           */
          public function check($image){
              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]));
          }
       
       
      復(fù)制代碼

      注意:以上代碼會(huì)提示一個(gè)錯(cuò)誤

      imagealphablending() expects parameter 1 to be resource

      imagesavealpha() expects parameter 1 to be resource

      在這個(gè)位置:

      這個(gè)錯(cuò)誤是因?yàn)?nbsp;imagealphablending() 和 imagesavealpha() 這兩個(gè)函數(shù)需要傳遞一個(gè)圖像資源作為參數(shù),但是在代碼中傳遞的參數(shù) $w_img 是一個(gè)字符串(水印圖片的路徑),而不是一個(gè)圖像資源。

      你需要將這兩個(gè)函數(shù)的參數(shù)改為 $water_img,也就是水印圖片創(chuàng)建的圖像資源。同時(shí),你需要修改以下代碼:

      $water_img = imagecreatefrompng($w_img);

      imagealphablending($water_img, false);

      imagesavealpha($water_img, true);

      修改后的代碼如下:

      $water_img = imagecreatefrompng($w_img);
      imagealphablending($source_img, false);
      imagesavealpha($source_img, true);

       

      文章來(lái)源:在線字典 www.zxzidian.com

      posted @ 2023-07-06 00:12  八路逆襲寡婦村  閱讀(334)  評(píng)論(0)    收藏  舉報(bào)
      www.zxzidian.com
      主站蜘蛛池模板: 黄色亚洲一区二区三区四区| 乱60一70归性欧老妇| 四虎永久精品免费视频| 免费无码成人AV片在线| 国产日韩久久免费影院| 中国女人熟毛茸茸A毛片| 国产国语一级毛片| 成人3D动漫一区二区三区| 精品国产乱码久久久久夜深人妻| 久久精品国产久精国产果冻传媒| 内射中出无码护士在线| 国产国拍精品av在线观看| 久爱无码精品免费视频在线观看| AV无码免费不卡在线观看| 日韩中文字幕亚洲精品| 精品国产乱码久久久久夜深人妻| 亚洲精品国产无套在线观| 伊人激情一区二区三区av| 久久久这里只有精品10| 日本中文字幕有码在线视频| 亚洲国产精品无码久久电影| 2021国产精品视频网站| 久久精品99国产国产精| 色综合久久天天综线观看| 翘臀少妇被扒开屁股日出水爆乳| 99热久久这里只有精品| 狠狠久久五月综合色和啪| 国产成人午夜一区二区三区| 无码人妻精品一区二区三区蜜桃| 色噜噜一区二区三区| 亚洲一区二区三区自拍天堂| 免费观看全黄做爰大片| 亚洲国产日韩欧美一区二区三区| 97久久久精品综合88久久| 亚洲第一福利网站在线| 金堂县| 国产精品成人无码久久久| 亚洲熟妇精品一区二区| 婷婷开心深爱五月天播播| 好紧好爽好湿别拔出来视频男男| 亚洲第一综合天堂另类专|