Add text watermarks and text shadows to php Images

Source: Internet
Author: User

To add watermarks to images in php, We need to install the GD library for php. Here we will not introduce the installation of the GD library, but will only introduce how to use php to add text watermarks to images and add text shadow effects.

The GD library is an extension library for php graphics processing. The GD library provides a series of APIS for image processing. You can use the GD library to process images or generate images. The GD library is usually used to generate thumbnails, add watermarks to images, generate Chinese Character verification codes, or generate reports for website data.

 

Generation:


The GD library is installed on the Internet and many virtual spaces are now supported. I will not describe it here. The following describes how to use the GD library through examples of actual application code and related annotations.

The Code is as follows: Copy code
$ Str = "Beijing ";
$ Str2 = "Air Quality: mild pollution ";
// Generate an object through the image $ im
$ Im = imagecreatefromjpeg ("images/3.jpg ");
// Load the zt. ttf font
$ Fnt = "zt. ttf ";
// Create a color for the white and shadow of the text font
$ White = imagecolorallocate ($ im, 222,229,207 );
$ Black = imagecolorallocate ($ im, 50, 50 );
// Create a function about the relative image position for easy calling
$ Top = 100;
$ Left = 60;
$ Top2 = 170;
// Add text, imagettftext (image, size, angle, x, y, color, fontfile, text) to the image)
Imagettftext ($ im, 41, 0, $ left + 1, $ top + 1, $ black, $ fnt, $ str );
Imagettftext ($ im, 41, 0, $ left, $ top, $ white, $ fnt, $ str );
Imagettftext ($ im, 43, 0, $ left + 1, $ top2 + 1, $ black, $ fnt, $ str2 );
Imagettftext ($ im, 43, 0, $ left, $ top2, $ white, $ fnt, $ str2 );
// Output $ im
ImageJpeg ($ im );
// Destroy $ im object
ImageDestroy ($ im );

 
Next we will explain in detail:

 

The Code is as follows: Copy code
Imagettftext (image, size, angle, x, y, color, fontfile, text)

 
Imagettftext () is to draw the string text to the image, starting from x, y (0, 0 in the upper left corner), angle, color, use the TrueType font file specified by fontfile.

The coordinates represented by x and y define the basic points of the first character in the lower left corner of the character.

Angle indicates the angle. 0 degrees indicates that the text is read from left to right, and a higher value indicates that the text is read from the bottom up in a counterclockwise direction (that is, if the value is 90 ).

Fontfile is the file name of the TrueType font to be used.

Text is a text string that can contain a sequence of UTF-8 characters.

Color is the color index value.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.