


Use the GD2 function to draw geometric figures (Typical Application Tutorial 4 of PHP graphics images)
Using the GD2 function to draw geometric figures (Typical application tutorial 4 of PHP graphics and images)
This article mainly explains the use of the GD2 function to draw geometric figures. First of all, we need to create an image. As we said in the previous article, creating an image is the first step in all image operations. Then we draw the graphic outline based on the coordinate points on the background, and finally output the graphic!
Then we introduced how to generate a verification code in the previous article "Using image processing technology to generate verification codes (Typical application tutorial of PHP graphics images 3)", I don’t know, friends Have you mastered this knowledge point? Friends who are not familiar with it can review it! Today we explain drawing geometric shapes!
Technical points of this article:
In this article, the GD2 function is mainly used to draw geometric figures, some of which have been performed in previous articles. For a detailed introduction, below we introduce the commonly used functions:
(1) imagecreatetruecolor() function
This function is used to recommend a full-color image file Resource, the syntax format of this function is as follows:
int imagecreatetruecolor(int x_size,int y_size);
The parameters x_size and y_size are the width and height of the image respectively, in pixels (px).
(2)imagecolorallocate() function
This function is used to match the color of the specified image for use by other drawing functions. The syntax format is as follows:
int imagecolorallocate(int im, int red, int green, int blue);
The parameter im represents the handle of the image; the parameters red, green, and blue are the three primary colors of RGB, and their values are integers from 0 to 255 or hexadecimal 0x00~0xff. This function must be called to create each color used in the image represented by image.
(3)imagefilledarc() function
This function is used to draw an ellipse and fill it. The syntax format of this function is as follows:
int imagefilledarc(im, int cx , int w, int h, int s, int e, int color, int style);
In In the image represented by im, draw an elliptical arc with cx, cy (the upper left corner of the image is 0, 0) as the center of the circle. Returns true if successful, false if failed. w and h specify the width and height of the ellipse respectively, the s and e parameters specify the starting point and end point in angle, and color represents the filling color value.
style can be the bitwise OR (OR) value of the following values:
IMG_ARC_PIE
IMG_ARC_CHORD
IMG_ARC_NOFILL
IMG_ARC_EDGED
IMG_ARC_PIE and IMG_ARC_CHORD are mutually exclusive; IMG_ARC_CHORD is just connected with a straight line Starting and ending points, IMG_ARC_PIE produces a circular boundary (if both are used, IMG_ARC_CHORD takes effect). IMG_ARC_NOFILL specifies that the arc or chord has only an outline, not a fill. IMG_ARC_EDGED specifies a straight line connecting the start and end points to the center point. Used with IMG_ARC_NOFILL, this is a good way to draw the outline of a pie chart (without filling it).
(4)imagefilledrectangle() function
This function is used to draw a filled rectangle. The syntax format of this function is as follows:
bool imagefilledrectangle ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int$color )
This function colors the closed rectangular area of the picture. The parameters x1, y1 and x2, y2 are the coordinates of the diagonal of the rectangle respectively. The parameter col represents the color to be painted;
(5)imagedestroy( )Function
This function is used to delete graphics and release memory space. The syntax format is as follows:
int imagedestroy(int im);
The parameter im is the imagecreate() function, the graphic created by the imagecreatetruecolor() function!
Let’s now take a look at how to draw geometric figures:
The specific code for the implementation process is as follows:
<?php header('Content-type: image/png');// 告诉浏览器,这个文件,是一个png图片 $img = imagecreatetruecolor(260, 200);//创建一个400X200的画布 $green = imagecolorallocate($img, 20, 145, 40);//定义一个绿颜色 $darkgreen = imagecolorallocate($img, 25, 80, 25);//定义一个深绿颜色 $blue = imagecolorallocate($img, 0, 225, 205);//定义一个蓝颜色 $darkblue = imagecolorallocate($img, 10, 180, 200);//定义一个深蓝颜色 $red = imagecolorallocate($img, 255, 0, 0);//定义一个红颜色 $bluered = imagecolorallocate($img, 202, 10, 0);//定义一个深红颜色 for($i = 110; $i > 100 ; $i--){ imagefilledarc($img,130,$i,150,100,0,95,$darkgreen,IMG_ARC_PIE); imagefilledarc($img,130,$i,150,100,95,125,$darkblue,IMG_ARC_PIE); imagefilledarc($img,130,$i,150,100,120,360,$bluered,IMG_ARC_PIE); } imagefilledarc($img,130,$i,150,100,0,95,$green,IMG_ARC_PIE); imagefilledarc($img,130,$i,150,100,95,125,$blue,IMG_ARC_PIE); imagefilledarc($img,130,$i,150,100,120,360,$red,IMG_ARC_PIE); imagepng($img);//以png格式输出图像 imagedestroy($img);//释放资源 ?>
Output results As follows:
Using the GD2 function to draw geometric figures, we have finished introducing it here. I believe everyone can master this function, so let’s continue to introduce the image. How to add row and column labels to the chart, please read "Using GD2 function to add row and column labels to the chart (Typical Application Tutorial of PHP Graphics and Images 5)" for details!
The above is the detailed content of Use the GD2 function to draw geometric figures (Typical Application Tutorial 4 of PHP graphics images). For more information, please follow other related articles on the PHP Chinese website!

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 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

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

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

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
