


PHP techniques for adding text and image watermarks when uploading images, _PHP tutorial
PHP implements techniques for adding text and image watermarks when uploading images.
The functions implemented in this article are particularly suitable for some shopping malls and photo sites. It shares the ability to add text and image watermarks when uploading images. Picture watermarking techniques are for your reference. The details are as follows
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{ 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); } //写入图片资源 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; } //验证图片是否存在 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. Rendering
The above is the entire content of this article. I hope it will be helpful to everyone in learning PHP programming.

PHP remains a powerful and widely used tool in modern programming, especially in the field of web development. 1) PHP is easy to use and seamlessly integrated with databases, and is the first choice for many developers. 2) It supports dynamic content generation and object-oriented programming, suitable for quickly creating and maintaining websites. 3) PHP's performance can be improved by caching and optimizing database queries, and its extensive community and rich ecosystem make it still important in today's technology stack.

In PHP, weak references are implemented through the WeakReference class and will not prevent the garbage collector from reclaiming objects. Weak references are suitable for scenarios such as caching systems and event listeners. It should be noted that it cannot guarantee the survival of objects and that garbage collection may be delayed.

The \_\_invoke method allows objects to be called like functions. 1. Define the \_\_invoke method so that the object can be called. 2. When using the $obj(...) syntax, PHP will execute the \_\_invoke method. 3. Suitable for scenarios such as logging and calculator, improving code flexibility and readability.

Fibers was introduced in PHP8.1, improving concurrent processing capabilities. 1) Fibers is a lightweight concurrency model similar to coroutines. 2) They allow developers to manually control the execution flow of tasks and are suitable for handling I/O-intensive tasks. 3) Using Fibers can write more efficient and responsive code.

The PHP community provides rich resources and support to help developers grow. 1) Resources include official documentation, tutorials, blogs and open source projects such as Laravel and Symfony. 2) Support can be obtained through StackOverflow, Reddit and Slack channels. 3) Development trends can be learned by following RFC. 4) Integration into the community can be achieved through active participation, contribution to code and learning sharing.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP is not dying, but constantly adapting and evolving. 1) PHP has undergone multiple version iterations since 1994 to adapt to new technology trends. 2) It is currently widely used in e-commerce, content management systems and other fields. 3) PHP8 introduces JIT compiler and other functions to improve performance and modernization. 4) Use OPcache and follow PSR-12 standards to optimize performance and code quality.

The future of PHP will be achieved by adapting to new technology trends and introducing innovative features: 1) Adapting to cloud computing, containerization and microservice architectures, supporting Docker and Kubernetes; 2) introducing JIT compilers and enumeration types to improve performance and data processing efficiency; 3) Continuously optimize performance and promote best practices.


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

WebStorm Mac version
Useful JavaScript development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment