当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。