茄子在线看片免费人成视频,午夜福利精品a在线观看,国产高清自产拍在线观看,久久综合久久狠狠综合

    <s id="ddbnn"></s>
  • <sub id="ddbnn"><ol id="ddbnn"></ol></sub>

  • <legend id="ddbnn"></legend><s id="ddbnn"></s>

    php實(shí)現(xiàn)圖片上傳時(shí)添加文字和圖片水印技巧
    來(lái)源:易賢網(wǎng) 閱讀:1630 次 日期:2016-08-17 14:36:26
    溫馨提示:易賢網(wǎng)小編為您整理了“php實(shí)現(xiàn)圖片上傳時(shí)添加文字和圖片水印技巧”,方便廣大網(wǎng)友查閱!

    本文實(shí)現(xiàn)的功能特別適用于一些商城和圖片站中,分享了圖片在上傳時(shí)添加文字和圖片水印的技巧,供大家參考,具體內(nèi)容如下

    1. water.class.php

    <?php

    header('Content-Type:text/html;charset=utf-8');

    /* 

     * To change this license header, choose License Headers in Project Properties.

     * To change this template file, choose Tools | Templates

     * and open the template in the editor.

     */

    //給圖片添加水印

    Class Water{

      //開(kāi)啟水印

      private $watermark_on = '1';

      public $water_img;

      //水印位置

      public $pos = 1;  

      //壓縮比

      public $pct = 80;

      //透明度

      public $quality = 80;

      public $text = '樂(lè)趣網(wǎng)zlblog.sinaapp.com';

      public $size = 12;

      public $color = '#000000';

      public $font = 'font.ttf';

      public function watermark( $img,$pos='',$out_img='',$water_img='',$text='' ){

        if(!$this->check($img) || !$this->watermark_on) return false;

        $water_img = $water_img ? $water_img : $this->water_img;

        //水印的開(kāi)啟狀態(tài)

        $waterimg_on = $this->check($water_img) ? 1 : 0;

        //判斷是否在原圖上操作

        $out_img = $out_img ? $out_img : $img;

        //判斷水印的位置

        $pos = $pos ? $pos : $this->pos;

        //水印文字

        $text = $text ? $text : $this->text;

        $img_info = getimagesize($img);

        $img_w = $img_info[0];

        $img_h = $img_info[1];

        //判斷水印圖片的類型

        if( $waterimg_on ){

          $w_info = getimagesize($water_img);

          $w_w = $w_info[0];

          $w_h = $w_info[1];

          if ( $img_w < $w_w || $img_h < $w_h ) return false;

          switch ( $w_info[2] ){

            case 1:

              $w_img = imagecreatefromgif($water_img);

              break;

            case 2:

              $w_img = imagecreatefromjpeg($water_img);

              break;

            case 3:

              $w_img = imagecreatefrompng($water_img);

              break;

          }

        }else{

          if( empty($text) || strlen($this->color)!=7 ) return FALSE;

          $text_info = imagettfbbox($this->size, 0, $this->font, $text);

          $w_w = $text_info[2] - $text_info[6];

          $w_h = $text_info[3] - $text_info[7];

        }

        //建立原圖資源

        switch ( $img_info[2] ){

          case 1:

            $res_img = imagecreatefromgif($img);

            break;

          case 2:

            $res_img = imagecreatefromjpeg($img);

            break;

          case 3:

            $res_img = imagecreatefrompng($img);

            break;

        }

        //確定水印的位置

        switch ( $pos ){

          case 1:

            $x = $y =25;

            break;

          case 2:

            $x = ($img_w - $w_w)/2; 

            $y = 25;

            break;

          case 3:

            $x = $img_w - $w_w;

            $y = 25;

            break;

          case 4:

            $x = 25;

            $y = ($img_h - $w_h)/2;

            break;

          case 5:

            $x = ($img_w - $w_w)/2; 

            $y = ($img_h - $w_h)/2;

            break;

          case 6:

            $x = $img_w - $w_w;

            $y = ($img_h - $w_h)/2;

            break;

          case 7:

            $x = 25;

            $y = $img_h - $w_h;

            break;

          case 8:

            $x = ($img_w - $w_w)/2;

            $y = $img_h - $w_h;

            break;

          case 9:

            $x = $img_w - $w_w;

            $y = $img_h - $w_h;

            break;

          default :

            $x = mt_rand(25, $img_w - $w_w);

            $y = mt_rand(25, $img_h - $w_h);

        }

        //寫(xiě)入圖片資源

        if( $waterimg_on ){

          imagecopymerge($res_img, $w_img, $x, $y, 0, 0, $w_w, $w_h, $this->pct); 

      }else{

        $r = hexdec(substr($this->color, 1,2));

        $g = hexdec(substr($this->color, 3,2));

        $b = hexdec(substr($this->color, 5,2));

        $color = imagecolorallocate($res_img, $r, $g, $b);

        imagettftext($res_img, $this->size, 0, $x, $y, $color, $this->font, $text);  

      }

      //生成圖片類型

      switch ( $img_info[2] ){

        case 1:

          imagecreatefromgif($res_img,$out_img);

          break;

        case 2:

          //imagecreatefromjpeg($res_img,$out_img);

          imagejpeg($res_img,$out_img);

          break;

        case 3:

          imagejpeg($res_img,$out_img);

          break;

      }

      if(isset($res_img)) imagedestroy ($res_img);

      if(isset($w_img))  imagedestroy($w_img);

      return TRUE;

    }  

      //驗(yàn)證圖片是否存在

        private function check($img){

          $type = array('.jpg','.jpeg','.png','.gif');

          $img_type = strtolower(strrchr($img, '.'));

          return extension_loaded('gd') && file_exists($img) && in_array($img_type, $type);

        } 

    }

    2. test1.php

    <?php

    /* 

     * To change this license header, choose License Headers in Project Properties.

     * To change this template file, choose Tools | Templates

     * and open the template in the editor.

     */

    //header('Content-Type:text/html;charset=utf-8');

    include 'water.class.php';

    $image = new Water();

    $image->watermark('12.jpg',5);

    //$image->watermark('12.jpg',1);

    以上就是本文的全部?jī)?nèi)容,希望對(duì)大家學(xué)習(xí)PHP程序設(shè)計(jì)有所幫助。

    更多信息請(qǐng)查看網(wǎng)絡(luò)編程
    由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!

    2026上岸·考公考編培訓(xùn)報(bào)班

    • 報(bào)班類型
    • 姓名
    • 手機(jī)號(hào)
    • 驗(yàn)證碼
    關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
    工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
    云南網(wǎng)警備案專用圖標(biāo)
    聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
    咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
    云南網(wǎng)警報(bào)警專用圖標(biāo)