


PHP watermark code supports text and image watermarks_PHP tutorial
PHP adds picture watermark and text watermark code. PHP adds watermark class. It supports the transparency setting of text and picture watermarks and the transparent background of watermark pictures. I wrote a class myself, because it needs to be used in a set of CMS I developed. People on the Internet always feel that it is not easy to use. I hope everyone likes this class. The usage method of the class is attached.
001
002class WaterMask{
003 public $waterType = 1; //Watermark type: 0 is text watermark, 1 is picture watermark
004 public $pos = 0; //Watermark position
005 public $transparent = 45; //Watermark transparency
006 public $waterStr = 'www.codefans.net'; //Watermark text
007 public $fontSize = 16; //Text font size
008 public $fontColor = array(255,0,255); //Watermark text color (RGB)
009 public $fontFile = 'AHGBold.ttf';//Font file
010 public $waterImg = 'logo.png';//Watermark image
011 private $srcImg = '';//Pictures that need to be watermarked
012 private $im = '';//image handle
013 private $water_im = '';//Watermark image handle
014 private $srcImg_info = '';//Picture information
015 private $waterImg_info = '';//Watermark image information
016 private $str_w = '';//Watermark text width
017 private $str_h = '';//Watermark text height
018 private $x = '';//Watermark X coordinate
019 private $y = '';//watermark y coordinate
020 function __construct($img) {
021 $this->srcImg = file_exists($img) $img : die('"'.$img.'" Sorry, the watermark file does not exist!');
022}
023 private function imginfo() {//Get the watermark image information and load it.
024 $this->srcImg_info = getimagesize($this->srcImg);
025 switch ($this->srcImg_info[2]) {
026 case 3:
027 $this->im = imagecreatefrompng($this->srcImg);
028 break 1;
029 case 2:
030 $this->im = imagecreatefromjpeg($this->srcImg);
031 break 1;
032 case 1:
033 $this->im = imagecreatefromgif($this->srcImg);
034 break 1;
035 default:
036 die('Watermark image ('.$this->srcImg.') The format of the watermark image is incorrect, please choose an image in PNG, JPEG, or GIF format.');
037}
038}
039 private function waterimginfo() {//Get the watermark image and load it.
040 $this->waterImg_info = getimagesize($this->waterImg);
041 switch ($this->waterImg_info[2]) {
042 case 3:
043 $this->water_im = imagecreatefrompng($this->waterImg);
044 break 1;
045 case 2:
046 $this->water_im = imagecreatefromjpeg($this->waterImg);
047 break 1;
048 case 1:
049 $this->water_im = imagecreatefromgif($this->waterImg);
050 break 1;
051 default:
052 die('The format of the watermark image ('.$this->srcImg.') is incorrect, only PNG, JPEG, and GIF are supported.');
053}
054}
055 private function waterpos() {//Watermark position algorithm
056 switch ($this->pos) {
057 case 0: //Random position
058 $this->x = rand(0,$this->srcImg_info[0]-$this->waterImg_info[0]);
059 $this->y = rand(0,$this->srcImg_info[1]-$this->waterImg_info[1]);
060 break 1;
061 case 1: //Top left
062 $this->x = 0;
063 $this->y = 0;
064 break 1;
065 case 2: //upper middle
066 $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;
067 $this->y = 0;
068 break 1;
069 case 3: //Top right
070 $this->x = $this->srcImg_info[0]-$this->waterImg_info[0];
071 $this->y = 0;
072 break 1;
073 case 4: //center left
074 $this->x = 0;
075 $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;
076 break 1;
077 case 5: //中中
078 $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;
079 $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;
080 break 1;
081 case 6: //Center right
082 $this->x = $this->srcImg_info[0]-$this->waterImg_info[0];
083 $this->y = ($this->srcImg_info[1]-$this->waterImg_info[1])/2;
084 break 1;
085 case 7: //Lower left
086 $this->x = 0;
087 $this->y = $this->srcImg_info[1]-$this->waterImg_info[1];
088 break 1;
089 case 8: //下中
090 $this->x = ($this->srcImg_info[0]-$this->waterImg_info[0])/2;
091 $this->y = $this->srcImg_info[1]-$this->waterImg_info[1];
092 break 1;
093 default: //下右
094 $this->x = $this->srcImg_info[0]-$this->waterImg_info[0];
095 $this->y = $this->srcImg_info[1]-$this->waterImg_info[1];
096 break 1;
097 }
098 }
099 private function waterimg() {
100 if ($this->srcImg_info[0] <= $this->waterImg_info[0] || $this->srcImg_info[1] <= $this->waterImg_info[1]){
101 die('水印比原图大!');
102 }
103 $this->waterpos();
104 $cut = imagecreatetruecolor($this->waterImg_info[0],$this->waterImg_info[1]);
105 imagecopy($cut,$this->im,0,0,$this->x,$this->y,$this->waterImg_info[0],$this->waterImg_info[1]);
106 $pct = $this->transparent;
107 imagecopy($cut,$this->water_im,0,0,0,0,$this->waterImg_info[0],$this->waterImg_info[1]);
108 imagecopymerge($this->im,$cut,$this->x,$this->y,0,0,$this->waterImg_info[0],$this->waterImg_info[1],$pct);
109 }
110 private function waterstr() {
111 $rect = imagettfbbox($this->fontSize,0,$this->fontFile,$this->waterStr);
112 $w = abs($rect[2]-$rect[6]);
113 $h = abs($rect[3]-$rect[7]);
114 $fontHeight = $this->fontSize;
115 $this->water_im = imagecreatetruecolor($w, $h);
116 imagealphablending($this->water_im,false);
117 imagesavealpha($this->water_im,true);
118 $white_alpha = imagecolorallocatealpha($this->water_im,255,255,255,127);
119 imagefill($this->water_im,0,0,$white_alpha);
120 $color = imagecolorallocate($this->water_im,$this->fontColor[0],$this->fontColor[1],$this->fontColor[2]);
121 imagettftext($this->water_im,$this->fontSize,0,0,$this->fontSize,$color,$this->fontFile,$this->waterStr);
122 $this->waterImg_info = array(0=>$w,1=>$h);
123 $this->waterimg();
124 }
125 function output() {
126 $this->imginfo();
127 if ($this->waterType == 0) {
128 $this->waterstr();
129 }else {
130 $this->waterimginfo();
131 $this->waterimg();
132 }
133 switch ($this->srcImg_info[2]) {
134 case 3:
135 imagepng($this->im,$this->srcImg);
136 break 1;
137 case 2:
138 imagejpeg($this->im,$this->srcImg);
139 break 1;
140 case 1:
141 imagegif($this->im,$this->srcImg);
142 break 1;
143 default:
144 die('原因未知:水印添加失败!');
145 break;
146 }
147 imagedestroy($this->im);
148 imagedestroy($this->water_im);
149 }
150}
151?>
PHP生成水印类用法:
view sourceprint?01
02$obj = new WaterMask($imgFileName);
03$obj->$waterType = 1;//水印类型:0为文字水印、1为图片水印
04$obj->$transparent = 45;//水印透明度
05$obj->$waterStr = 'www.codefans.net';//水印文字
06$obj->$fontSize = 16;//字体大小
07$obj->$fontColor = array(255,0,255);//水印文字颜色(RGB值)
08$obj->$fontFile = = 'AHGBold.ttf'; //字体名称
09$obj->output(); //输出水印图片
10?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.
