温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

php如何实现图片上传时添加文字和图片水印

发布时间:2021-03-08 17:00:42 阅读:302 作者:TREX 栏目:开发技术
PHP开发者专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

这篇文章主要讲解了“php如何实现图片上传时添加文字和图片水印”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“php如何实现图片上传时添加文字和图片水印”吧!

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{
 //开启水印
 private $watermark_on '1';
  
 public $water_img;
  
 //水印位置
 public $pos 1; 
  
 //压缩比
 public $pct 80;
  
 //透明度
 public $quality 80;
  
 public $text '乐趣网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;
  //水印的开启状态
  $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{
   ifempty($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);
  }
   
  //写入图片资源
  if$waterimg_on ){
   imagecopymerge($res_img$w_img$x$y00$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;
} 
 //验证图片是否存在
  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);

3.效果图

php如何实现图片上传时添加文字和图片水印

感谢各位的阅读,以上就是“php如何实现图片上传时添加文字和图片水印”的内容了,经过本文的学习后,相信大家对php如何实现图片上传时添加文字和图片水印这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

php
AI

开发者交流群×