Home Backend Development PHP Tutorial A super powerful class for adding watermarks to images_PHP Tutorial

A super powerful class for adding watermarks to images_PHP Tutorial

Jul 13, 2016 pm 05:47 PM
indivual add picture deal with accomplish powerful watermark of kind

I had nothing to do in the afternoon, so I wrote a class for adding watermarks to pictures. This class implements adding text watermarks to pictures, adding picture watermarks, and also implements the transparency function for all netizens to learn and communicate

/**

* Add watermark category, support text, picture watermark and transparency setting, watermark picture background is transparent.

* @author litx date:2011-12-05 at 3 pm at Micron Qvod R&D Center

​*/

class WaterMask

{

/**

* Watermark type

* @var int $waterType 0 is text watermark; 1 is picture watermark

​​*/

Private $waterType = 1;

/**

* Watermark position type

* @var int $pos Default is 9 (lower right corner)

​​*/

Private $pos = 9;

/**

* Watermark transparency

* @var int $transparent Watermark transparency (the smaller the value, the more transparent)

​​*/

private $transparent = 20;

/**

* If it is a text watermark, you need to add the watermark text

* @var string $waterStr Default value (Li Tiexiong’s personal collection)

​​*/

private $waterStr = 'Personal portfolio';

/**

* Text font size

* @var int $fontSize Font size

​​*/

private $fontSize = 14;

/**

* Watermark text color (RGB)

* @var array $fontColor Watermark text color (RGB)

​​*/

Private $fontColor = array (255, 255, 255);

/**

* Font file

* @var unknown_type

​​*/

Private $fontFile = 'AHGBold.ttf';

/**

* Watermark image

* @var string $waterImg

​​*/

Private $waterImg = 'logo.png';

/**

* Pictures that need to be watermarked

* @var string $srcImg

​​*/

Private $srcImg = '';

/**

* Image handle 

* @var string $im

​​*/

private $im = '';

/**

* Watermark image handle

* @var string $water_im

​​*/

private $water_im = '';

/**

* Picture information

* @var array $srcImg_info

​​*/

Private $srcImg_info = '';

/**

* Watermark image information

* @var array $waterImg_info

​​*/

Private $waterImg_info = '';

/**

* Watermark text width

* @var int $str_w

​​*/

private $str_w = '';

/**

* Watermark text height

* @var int $str_h

​​*/

​ private $str_h = '';  

/**

* Watermark X coordinates

* @var int $x

​​*/

private $x = '';

/**

* Watermark y coordinates

* @var int $y

​​*/

private $y = '';

/**

* Constructor, initialize the source image by passing in the source image that needs to be watermarked

* @param string $img Source image that needs to be watermarked

​​*/

Public function __construct ($img)

If(file_exists($img)){//The source file exists

                $this -> srcImg = $img;

          }else{//The source file does not exist

echo 'The source file'.$img.' does not exist, please check whether the file path is correct';

exit();

         } 

                                                       

}  

/**

* Get the information of the picture that needs to be watermarked, and load the picture

​​*/

Public function imginfo ()

                                          

               $this -> srcImg_info = getimagesize($this -> srcImg);

        var_dump($this -> srcImg_info);exit();

switch ($this -> srcImg_info[2]) {

case 3 ://png

$this -> im = imagecreatefrompng($this -> srcImg);

                   break 1;

case 2: // jpeg/jpg

$this -> im = imagecreatefromjpeg($this -> srcImg);

                   break 1;

case 1: //gif

$this -> im = imagecreatefromgif($this -> srcImg);

                   break 1;

                                                                                                                                                                                                                                                              default

Echo 'source picture file'. $ This -& gt; srcimg. 'Format is incorrect. At present, this function only supports PNG, JPEG, GIF picture watermark function';

exit();

         } 

}  

/**

* Get the information of the watermark image and load the image

​​*/

Private function waterimginfo ()

             $this -> waterImg_info = getimagesize($this -> waterImg);

switch ($this -> waterImg_info[2]) {

case 3:

$ This -& gt; water_im = ImageCreateFrompng ($ this -& gt; waterimg);

                   break 1;

           case 2:

                                                                                                                                                                                                            $this -> water_im = imagecreatefromjpeg($this -> waterImg);

                   break 1;

case 1 :

                                                                                                                                                                                                                                  $this -> water_im = imagecreatefromgif($this -> waterImg);

                   break 1;

                                                                                                                                                                                                                                                              default

Echo 'source picture file'. $ This -& gt; srcimg. 'Format is incorrect. At present, this function only supports PNG, JPEG, GIF picture watermark function';

exit();

         } 

}  

/**

* Watermark position algorithm 

​​*/

private function waterpos ()

                                                       

switch ($this -> pos) {

             case 0: //Random position                                      

                            $this -> x = rand(0, $this -> srcImg_info[0] - $this -> waterImg_info[0]);

                       $this -> y = rand(0, $this -> srcImg_info[1] - $this -> waterImg_info[1]);

                   break 1;

Case 1: // Upper left

$this -> x = 20;

$this -> y = 20;

                   break 1;

case 2: //upper middle

$this -> x = ($this -> srcImg_info[0] - $this -> waterImg_info[0]) / 2;

$this -> y = 20;

Break 1;

Case 3: //Top right

$this -> x = $this -> srcImg_info[0] - $this -> waterImg_info[0];

$this -> y = 20;

                   break 1;

case 4: //center left

$this -> x = 20;

                         $this -> y = ($this -> srcImg_info[1] - $this -> waterImg_info[1]) / 2;

                   break 1;

case 5: //中中

$this -> x = ($this -> srcImg_info[0] - $this -> waterImg_info[0]) / 2;

                $this -> y = ($this -> srcImg_info[1] - $this -> waterImg_info[1]) / 2; 

                break 1; 

            case 6 : //中右    

                $this -> x = $this -> srcImg_info[0] - $this -> waterImg_info[0] - 20; 

                $this -> y = ($this -> srcImg_info[1] - $this -> waterImg_info[1]) / 2; 

                break 1; 

            case 7 : //下左    

                $this -> x = 20; 

                $this -> y = $this -> srcImg_info[1] - $this -> waterImg_info[1] - 20; 

                break 1; 

            case 8 : //下中    www.2cto.com

                $this -> x = ($this -> srcImg_info[0] - $this -> waterImg_info[0]) / 2; 

                $this -> y = $this -> srcImg_info[1] - $this -> waterImg_info[1] - 20; 

                break 1; 

            case 9 : //下右    

                $this -> x = $this -> srcImg_info[0] - $this -> waterImg_info[0] - 20; 

                $this -> y = $this -> srcImg_info[1] - $this -> waterImg_info[1] - 20; 

                break 1; 

            default : //下右    

                $this -> x = $this -> srcImg_info[0] - $this -> waterImg_info[0] - 20; 

                $this -> y = $this -> srcImg_info[1] - $this -> waterImg_info[1] - 20; 

                break 1; 

        } 

    } 

    /**

* Add image watermark

​​*/ 

    private function waterimg () 

    { 

        if ($this -> srcImg_info[0] <= $this -> waterImg_info[0] || $this -> srcImg_info[1] <= $this -> waterImg_info[1]) { 

            echo '图片尺寸太小,无法加水印,请上传一张大图片'; 

            exit(); 

        } 

        //计算水印位置 

        $this->waterpos(); 

        $cut = imagecreatetruecolor($this -> waterImg_info[0], $this -> waterImg_info[1]); 

        imagecopy($cut, $this -> im, 0, 0, $this -> x, $this -> y, $this -> waterImg_info[0],  

        $this -> waterImg_info[1]); 

        $pct = $this -> transparent; 

        imagecopy($cut, $this -> water_im, 0, 0, 0, 0, $this -> waterImg_info[0],  

        $this -> waterImg_info[1]); 

        //将图片与水印图片合成 

        imagecopymerge($this -> im, $cut, $this -> x, $this -> y, 0, 0, $this -> waterImg_info[0], $this -> waterImg_info[1], $pct); 

    } 

    /**

* Add text watermark

​​*/ 

    private function waterstr () 

    { 

        $rect = imagettfbbox($this -> fontSize, 0, $this -> fontFile, $this -> waterStr); 

        $w = abs($rect[2] - $rect[6]); 

        $h = abs($rect[3] - $rect[7]); 

        $fontHeight = $this -> fontSize; 

        $this -> water_im = imagecreatetruecolor($w, $h); 

        imagealphablending($this -> water_im, false); 

        imagesavealpha($this -> water_im, true); 

        $white_alpha = imagecolorallocatealpha($this -> water_im, 255, 255, 255, 127); 

        imagefill($this -> water_im, 0, 0, $white_alpha); 

        $color = imagecolorallocate($this -> water_im, $this -> fontColor[0], $this -> fontColor[1],  

        $this -> fontColor[2]); 

        imagettftext($this -> water_im, $this -> fontSize, 0, 0, $this -> fontSize, $color,  

        $this -> fontFile, $this -> waterStr); 

        $this -> waterImg_info = array ( 

            0 => $w, 1 => $h 

        ); 

        $this->waterimg(); 

    } 

    /**

* * Watermark image output

​​*/ 

    public function output () 

    { 

        $this->imginfo(); 

        if ($this -> waterType == 0) { 

            $this->waterstr(); 

        } else { 

            $this->waterimginfo(); 

            $this->waterimg(); 

        } 

        switch ($this -> srcImg_info[2]) { 

            case 3 : 

                imagepng($this -> im, $this -> srcImg); 

                break 1; 

            case 2 : 

                imagejpeg($this -> im, $this -> srcImg); 

                break 1; 

            case 1 : 

                imagegif($this -> im, $this -> srcImg); 

                break 1; 

            default : 

                    die('Failed to add watermark!');

break;

         } 

//Subsequent destruction processing after image synthesis

imagedestroy($this -> im);

imagedestroy($this -> water_im);

}  

}

Usage example:

//instantiate object

$obj = new WaterMask('img/10451.jpg');

//Type: 0 is text watermark, 1 is picture watermark

$obj->waterType = 0;

//Watermark transparency, the smaller the value, the higher the transparency

$obj->transparent = 15;

//Watermark text

//$obj->waterStr = 'Happy Birthday';

//Watermark image

//$obj->waterImg = '';//Watermark image

//Text font size

$obj->fontSize = 14;

//Watermark text color (RGB)

$obj->fontColor = array(255,255,100);

//Font file

$obj->fontFile = 'STCAIYUN.ttf';

//The output watermark image file overwrites the input image file

$obj->output();

The usage is relatively simple and very practical.

Author ltx851201

http://www.bkjia.com/PHPjc/478502.html

www.bkjia.com

true

TechArticleI had nothing to do in the afternoon, so I wrote a class for adding watermarks to images. This class implements adding text watermarks to images. , add image watermarks, and implement transparency functions for netizens to learn and...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the problem of automatically saving pictures when publishing on Xiaohongshu? Where is the automatically saved image when posting? How to solve the problem of automatically saving pictures when publishing on Xiaohongshu? Where is the automatically saved image when posting? Mar 22, 2024 am 08:06 AM

With the continuous development of social media, Xiaohongshu has become a platform for more and more young people to share their lives and discover beautiful things. Many users are troubled by auto-save issues when posting images. So, how to solve this problem? 1. How to solve the problem of automatically saving pictures when publishing on Xiaohongshu? 1. Clear the cache First, we can try to clear the cache data of Xiaohongshu. The steps are as follows: (1) Open Xiaohongshu and click the &quot;My&quot; button in the lower right corner; (2) On the personal center page, find &quot;Settings&quot; and click it; (3) Scroll down and find the &quot;Clear Cache&quot; option. Click OK. After clearing the cache, re-enter Xiaohongshu and try to post pictures to see if the automatic saving problem is solved. 2. Update the Xiaohongshu version to ensure that your Xiaohongshu

How to add watermark to Meitu Xiuxiu? Share how to add watermark to beautiful photos! How to add watermark to Meitu Xiuxiu? Share how to add watermark to beautiful photos! Mar 16, 2024 pm 09:55 PM

Want to know how to add watermark to MeituXiuXiu? Meitu Xiuxiu is a very easy-to-use photo editing software. It provides functions such as cutting out pictures and placing them on another picture, changing the picture size by kb, removing watermarks, changing the background color of ID photos, and adding time, date and location watermarks to the full screen. Help users quickly complete the production of pictures. Some users have created their own pictures and don’t want others to steal them. They want to cover them with their own watermarks, but don’t know how to do it? The editor will now share with you how to add watermarks to beautiful photos! If you like it, come and download it! 1. How to add watermark to beautiful pictures? Share how to add watermark to beautiful photos! 1. Open the 2023 version of Meitu Xiu Xiu downloaded from this site. Meitu Xiu Xiu 2023 version Category: Shooting and beautification Download Meitu Xiu Xiu 2023 version is a feature-rich picture beautification and editing software

How to post pictures in TikTok comments? Where is the entrance to the pictures in the comment area? How to post pictures in TikTok comments? Where is the entrance to the pictures in the comment area? Mar 21, 2024 pm 09:12 PM

With the popularity of Douyin short videos, user interactions in the comment area have become more colorful. Some users wish to share images in comments to better express their opinions or emotions. So, how to post pictures in TikTok comments? This article will answer this question in detail and provide you with some related tips and precautions. 1. How to post pictures in Douyin comments? 1. Open Douyin: First, you need to open Douyin APP and log in to your account. 2. Find the comment area: When browsing or posting a short video, find the place where you want to comment and click the &quot;Comment&quot; button. 3. Enter your comment content: Enter your comment content in the comment area. 4. Choose to send a picture: In the interface for entering comment content, you will see a &quot;picture&quot; button or a &quot;+&quot; button, click

How to set photo watermark on Xiaomi Mi 14? How to set photo watermark on Xiaomi Mi 14? Mar 18, 2024 am 11:00 AM

In order to make the photos taken more personalized and unique, Xiaomi Mi 14 provides photo watermark settings. By setting photo watermarks, users can add patterns, text and logos to the photos they take, so that each photo can better record precious moments and memories. Next, we will introduce how to set a photo watermark in Xiaomi 14 to make your photos more personalized and vivid. How to set photo watermark on Xiaomi Mi 14? 1. First click “Camera”. 2. Then click &quot;Settings&quot;. 3. Then find the watermark, and then you can start shooting.

The operation process of WIN10 service host occupying too much CPU The operation process of WIN10 service host occupying too much CPU Mar 27, 2024 pm 02:41 PM

1. First, we right-click the blank space of the taskbar and select the [Task Manager] option, or right-click the start logo, and then select the [Task Manager] option. 2. In the opened Task Manager interface, we click the [Services] tab on the far right. 3. In the opened [Service] tab, click the [Open Service] option below. 4. In the [Services] window that opens, right-click the [InternetConnectionSharing(ICS)] service, and then select the [Properties] option. 5. In the properties window that opens, change [Open with] to [Disabled], click [Apply] and then click [OK]. 6. Click the start logo, then click the shutdown button, select [Restart], and complete the computer restart.

How to make ppt pictures appear one by one How to make ppt pictures appear one by one Mar 25, 2024 pm 04:00 PM

In PowerPoint, it is a common technique to display pictures one by one, which can be achieved by setting animation effects. This guide details the steps to implement this technique, including basic setup, image insertion, adding animation, and adjusting animation order and timing. Additionally, advanced settings and adjustments are provided, such as using triggers, adjusting animation speed and order, and previewing animation effects. By following these steps and tips, users can easily set up pictures to appear one after another in PowerPoint, thereby enhancing the visual impact of the presentation and grabbing the attention of the audience.

Introduction to the method of editing watermark with WPS Introduction to the method of editing watermark with WPS Mar 27, 2024 pm 02:06 PM

1. We use WPS to open a document. There is a watermark in it. It looks messy. How to remove it? Look down. 2. Find the Insert tab in the menu bar, select the header and footer icons under this tab, and click on them with the left mouse button. 3. At this time, the text on the page becomes gray and cannot be edited, but the watermark on the back of the text can be edited at this time. 4. Click on the watermark, you can see that this is a picture watermark, because there are several small squares around the picture, and the picture can be edited at this time. 5. Use the delete key on the keyboard to delete the picture, and you can see that the watermark is gone. 6. Double-click the mouse on the page to exit the header and footer editing mode. The text on the page returns to normal color and can be edited, but at this time the watermark on the page has disappeared. 7.

How to remove the evaluation copy watermark in the lower right corner of win11 24H2? Tips for removing the evaluation copy in the lower right corner of win11 How to remove the evaluation copy watermark in the lower right corner of win11 24H2? Tips for removing the evaluation copy in the lower right corner of win11 Jun 01, 2024 pm 09:52 PM

How to remove the evaluation copy text in the lower right corner of win1124H2? When we use the system, sometimes the desktop will display a transparent watermark on the lower right corner of the screen. So how do we remove this transparent watermark? Users can directly use third-party software to operate. Let this site carefully introduce to users how to remove the watermark on the win1124H2 evaluation copy. To remove the watermark on the win1124H2 evaluation copy, download the UniversalWatermarkDisabler tool. After running it, the current system version and watermark status will be displayed. If "Ready for installation" is displayed in "Status", it can be removed.

See all articles