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);
?>
输出:
示例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);
?>
输出:
参考: http://php.net/manual/en/function.imageellipse.php
相关用法
- p5.js log()用法及代码示例
- p5.js sin()用法及代码示例
- p5.js tan()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- p5.js cos()用法及代码示例
- PHP pos()用法及代码示例
- PHP key()用法及代码示例
- PHP tan( )用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- p5.js day()用法及代码示例
- PHP Ds\Map put()用法及代码示例
注:本文由纯净天空筛选整理自Vishal_Khoda大神的英文原创作品 PHP | imageellipse() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。