Home Backend Development PHP Tutorial Play with image function library—common graphics operations_PHP tutorial

Play with image function library—common graphics operations_PHP tutorial

Jul 21, 2016 pm 04:12 PM
php png What function image graphics big common Library I operate yes check Have fun theory Own solve

I try not to talk about big theories, such as what png is, find it yourself.

Since version 4.3, PHP has bundled its own GD2 library, which users can download and set up by themselves. If you want to check whether your PHP version supports the gd module (supports JPEG, PNG, WBMP but no longer supports GIF), do the following: It’s a method:

if(!function_exists('imagecreate')) {
die('This server does not support GD module');
}

If it is not supported, how to configure it? Download the dll file of the gd module, modify php.ini, and restart the server.

Hereinafter referred to as PHP drawing is PS.

When you plan to PS, you should complete the following steps, which are necessary.

1: Create a basic PS object (I assume it is $image), fill in the background (black by default), all subsequent PS operations are based on this background image.
2: Draw on $image.
3: Output this image.
4: Destroy the object and clear the used memory.

First of all, let’s get to know a few commonly used functions. These functions are introduced in detail in the PHP manual and are generally quoted here.

resource imagecreate ( int x_size, int y_size )
imagecreate() returns an image identifier representing a blank image of size x_size and y_size.
This function is basically the same as imagetruecolor($width,$height).

int imagecolorallocate (resource image, int red, int green, int blue)
imagecolorallocate() Returns an identifier representing the color composed of the given RGB components. The image parameter is the return value of the imagecreatetruecolor() function. red, green and blue are the red, green and blue components of the desired color respectively. These parameters are integers from 0 to 255 or hexadecimal 0x00 to 0xFF. imagecolorallocate() must be called to create each color used in the image represented by image.

bool imagefill (resource image, int x, int y, int color)
imagefill() performs area filling with the color color at the coordinates x, y of the image image (the upper left corner of the image is 0, 0) (i.e. Points with the same color as the x, y point and adjacent points will be filled).


bool imageline ( resource image, int x1, int y1, int x2, int y2, int color )
imageline() uses color color in the image image from coordinates x1, y1 to x2, y2 ( Draw a line segment with the upper left corner of the image at 0, 0).

bool imagestring (resource image, int font, int x, int y, string s, int col)
imagestring() uses col color to draw string s to the x, y coordinates of the image represented by image (This is the coordinate of the upper left corner of the string, and the upper left corner of the entire image is 0,0). If font is 1, 2, 3, 4 or 5, the built-in font is used.

array imagettftext (resource image, float size, float angle, int x, int y, int color, string fontfile, string text)
This function is more important and has many parameters, which will not be listed here. It is mainly used to write text to images, similar to the above function, but more powerful than the former.

bool imagefilltoborder (resource image, int x, int y, int border, int color)
imagefilltoborder() starts from x, y (the upper left corner of the image is 0, 0) point and performs area filling with color color until Until it reaches the border with color border. [Note: All colors within the border will be filled. If the specified border color is the same as the point, there is no fill. If the border color is not present in the image, the entire image will be filled. 】

bool imagefilledellipse (resource image, int cx, int cy, int w, int h, int color)
imagefilledellipse() uses cx, cy in the image represented by image (the upper left corner of the image is 0, 0) Draw an ellipse for the center. w and h specify the width and height of the ellipse respectively. The ellipse is filled with color. Returns TRUE on success, FALSE on failure.

Output image data: imagepng($image[,$filename])

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/313722.htmlTechArticleI try not to talk about big theories, such as what is png, check it out yourself. PHP has been bundled since version 4.3 Users can download and set up their own GD2 library. If you want to check whether your php version supports...
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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles