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

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

WBOY
發布: 2023-09-09 14:32:01
轉載
845 人瀏覽過

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

語法

Bool imageellipse($image, $cx, $cy, $width, $height, $color)
登入後複製

參數

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

  • < span>$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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板