當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imagefilledellipse()用法及代碼示例


imagefilledellipse()函數是PHP中的內置函數,用於繪製填充的橢圓。用指定的中心坐標繪製橢圓。

用法:

bool imagefilledellipse( $image, $cx, $cy, $width, $height, $color )

參數:該函數接受上述和以下所述的六個參數:


  • $image:imagecreatetruecolor()函數用於創建給定尺寸的空白圖像。
  • $cx:中心的x坐標。
  • $cy:中心的y坐標。
  • $width:橢圓寬度。
  • $height:橢圓高度。
  • $color:填充顏​​色。使用imagecolorallocate()創建的顏色標識符。

返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。

以下示例程序旨在說明PHP中的imagefilledellipse()函數。

程序1:

<?php 
   
// It create the size of image or blank image. 
$image = imagecreatetruecolor(500, 300); 
   
// Set the background color of image. 
$bg = imagecolorallocate($image, 205, 220, 200); 
   
// Fill background with above selected color. 
imagefill($image, 0, 0, $bg); 
  
// Set the color of an ellipse. 
$col_ellipse = imagecolorallocate($image, 0, 102, 0); 
   
// Function to draw the filled ellipse. 
imagefilledellipse($image, 250, 150, 400, 250, $col_ellipse); 
   
// Output of the image. 
header("Content-type: image/png"); 
imagepng($image); 
   
?>

輸出:
image-fill

程序2:

<?php 
   
// It create the size of image or blank image. 
$image = imagecreatetruecolor(300, 500); 
   
// Set the background color of image. 
$bg = imagecolorallocate($image, 205, 220, 200); 
   
// Fill background with above selected color. 
imagefill($image, 0, 0, $bg); 
  
// set color of ellipse. 
$col_ellipse = imagecolorallocate($image, 0, 102, 0); 
   
// function to draw the filled ellipse with white color. 
imagefilledellipse($image, 150, 250, 250, 400, $col_ellipse); 
   
// output of the image. 
header("Content-type: image/png"); 
imagepng($image); 
   
?>

輸出:
ellipse filled

您也可以嘗試使用相同的函數製作一個圓。

相關文章: PHP - imageellipse()用法及代碼示例

參考: http://php.net/manual/en/function.imagefilledellipse.php



相關用法


注:本文由純淨天空篩選整理自Vishal_Khoda大神的英文原創作品 PHP | imagefilledellipse() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。