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


PHP imageellipse()用法及代碼示例


imageellipse()函數是PHP中的一個內置函數,用於繪製橢圓。如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。

用法:

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

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


  • $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
  • $cx:中心的x坐標。
  • $cy:中心的y坐標。
  • $width:橢圓寬度。
  • $height:橢圓高度。
  • $color:設置橢圓的顏色。由imagecolorallocate()函數創建的顏色標識符。

返回值:成功返回TRUE,失敗返回FALSE。

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

示例1:

<?php 
   
// It create the size of image or blank image. 
$image_size = imagecreatetruecolor(500, 300); 
   
// Set the background color of image. 
$background_color = imagecolorallocate($image_size, 255, 255, 255); 
   
// Fill background with above selected color. 
imagefill($image_size, 0, 0, $background_color); 
   
// set color of ellipse. 
$ellipse_color = imagecolorallocate($image_size, 0, 0, 0); 
   
// Function to draw the ellipse. 
imageellipse($image_size, 250, 150, 400, 250, $ellipse_color); 
   
// Output the image. 
header("Content-type: image/png"); 
imagepng($image_size); 
   
?>

輸出:

ellipse

示例2:

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

輸出:

ellipse

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



相關用法


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