Php method to draw a sector

Source: Internet
Author: User
Tags image identifier
This article describes how to draw a sector in php, which involves the use of the imagefilledarc method in the GD Library. For more information, see the example below. Share it with you for your reference. The details are as follows:

Php draws a slice. For Parameter descriptions, except for the last parameter, the parameters are the same as those of the arc. for details, refer to the previous "php method for drawing an arc". The last parameter has four types. They are:

IMG_ARC_PIE, IMG_ARC_CHORD, IMG_ARC_NOFILL, and IMG_ARC_EDGED. for details about the parameters, see imagefilledarc in the php Manual.

The code is as follows:

<? Php
// 1. create a canvas
$ Im = imagecreatetruecolor (300,200); // create a real-color image. the default background is black and the image identifier is returned. Another function, imagecreate, is not recommended.
// 2. draw the desired image
$ Red = imagecolorallocate ($ im, 255, 0, 0); // create a color
Imagefilledarc ($ im, 0,120, $ red, IMG_ARC_PIE); // draws a sector function
// 3. output image
Header ("content-type: image/png ");
Imagepng ($ im); // output to the page. If the second parameter [, $ filename] exists, the image is saved.
// 4. destroy images and release memory
Imagedestroy ($ im );
?>

I hope this article will help you with php programming.

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.