search
HomeBackend DevelopmentPHP TutorialUse 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(&#39;Content-type: image/png&#39;);// 告诉浏览器,这个文件,是一个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:

Use the GD2 function to draw geometric figures (Typical Application Tutorial 4 of PHP graphics images)

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!

Statement
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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

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.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools