Heim  >  Artikel  >  Backend-Entwicklung  >  Wie zeichne ich eine Ellipse mit der Funktion imageellipse() in PHP?

Wie zeichne ich eine Ellipse mit der Funktion imageellipse() in PHP?

WBOY
WBOYnach vorne
2023-09-09 14:29:01786Durchsuche

imageellipse() ist eine in PHP integrierte Funktion zum Zeichnen von Ellipsen. Gibt bei Erfolg True und bei Misserfolg False zurück.

Syntax

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

Parameter

imageellipse() benötigt sechs verschiedene Parameter: $image, $ cx, $cy, $ Breite , $ Höhe, $Farbe.

  • $image – Die Größe des erstellten Bildes. Es wird von einer der Bilderstellungsfunktionen zurückgegeben, beispielsweise imagecreatetruecolor().

  • $cx – Legt die x-Koordinate des Mittelpunkts fest.

  • $cy – Legt die Y-Koordinate des Mittelpunkts fest.

  • $width – Legt die Ellipsenbreite fest.

  • $height – Legt die Ellipsenhöhe fest.

  • $Farbe – Legen Sie die Farbe der Ellipse fest. Von der Funktion imagecolorallocate() erstellter Farbbezeichner.

Rückgabewert

Gibt „True“ zurück, wenn erfolgreich, und „False“, wenn es fehlschlägt.

Beispiel 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);
?>

Ausgabe

Wie zeichne ich eine Ellipse mit der Funktion imageellipse() in PHP?

Beispiel 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);
?>

Ausgabe

Wie zeichne ich eine Ellipse mit der Funktion imageellipse() in PHP?

Das obige ist der detaillierte Inhalt vonWie zeichne ich eine Ellipse mit der Funktion imageellipse() in PHP?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:tutorialspoint.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen