How to draw an ellipse using imageellipse() function in PHP?

WBOY
Release: 2023-09-09 14:32:01
forward
783 people have browsed it

imageellipse() is a built-in function in PHP, used to draw ellipses. Returns True on success and False on failure.

Syntax

Bool imageellipse($image, $cx, $cy, $width, $height, $color)
Copy after login

Parameters

imageellipse() Takes six different parameters: $image$ cx$cy$Width $Height, $Color.

  • < span>$image - The size of the created image. It is returned by one of the image creation functions, such as imagecreatetruecolor().

  • $cx - Sets the x-coordinate of the center.

  • $cy - Sets the y-coordinate of the center.

  • $width - Set the ellipse width.

  • $height - Set the height of the ellipse.

  • $Color - Set the color of the ellipse. Color identifier created by the imagecolorallocate() function.

Return value

Returns True on success and False on failure.

Example 1

<?php
   // Create a blank image.
   $image = imagecreatetruecolor(700, 350);

   // Select the background color.
   $bg = imagecolorallocate($image, 0, 0, 0);

   // Fill the background with the color selected above.
   imagefill($image, 0, 0, $bg);

   // Choose a color for the ellipse.
   $col_ellipse = imagecolorallocate($image, 255, 255, 255);

   // Draw the ellipse.
   imageellipse($image, 325, 175, 500, 175, $col_ellipse);

   // Output the image.
   header("Content-type: image/png");
   imagepng($image);
?>
Copy after login

Output

How to draw an ellipse using imageellipse() function in PHP?

Example 2

<?php
   //It creates the blank image or size of the image.
   $image = imagecreatetruecolor(700, 600);

   //Set the background color of the image.
   $bg = imagecolorallocate($image, 122, 122, 122);

   //Fill background with the above-selected color.
   imagefill($image, 0, 0, $bg);

   // set color of the ellipse.
   $col_ellipse = imagecolorallocate($image, 0, 255, 255);

   // Function to draw the ellipse.
   imageellipse($image, 250, 300, 300, 550, $col_ellipse);

   // Output of the image.
   header("Content-type: image/gif");
   imagepng($image);
?>
Copy after login

Output

How to draw an ellipse using imageellipse() function in PHP?

The above is the detailed content of How to draw an ellipse using imageellipse() function in PHP?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!