首頁 >後端開發 >php教程 >如何使用PHP中的imageellipse()函數繪製橢圓?

如何使用PHP中的imageellipse()函數繪製橢圓?

WBOY
WBOY轉載
2023-09-09 14:29:01852瀏覽

imageellipse()是PHP中的內建函數,用來繪製橢圓。成功時回傳 True,失敗時回傳 False。

語法

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

參數

imageellipse() 採用六個不同的參數:$image$ cx$cy$寬度 $高度$顏色

  • $image - 建立映像的大小。它由圖像創建函數之一傳回,例如 imagecreatetruecolor()。

  • $cx - 設定中心的 x 座標。

  • $cy - 設定中心的 y 座標。

  • $width - 設定橢圓寬度。

  • $height - 設定橢圓高度。

  • $顏色 -設定橢圓的顏色。由 imagecolorallocate() 函數建立的顏色識別碼。

傳回值

成功時傳回 True,失敗時傳回 False。

範例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);
?>

輸出

如何使用PHP中的imageellipse()函數繪製橢圓?

範例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);
?>

輸出

如何使用PHP中的imageellipse()函數繪製橢圓?

以上是如何使用PHP中的imageellipse()函數繪製橢圓?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除