PHP 中的 imagefilledellipse() 函数


imagefilledellipse() 函数用于绘制一个填充的椭圆。

语法

imagefilledellipse( $img, $cx, $cy, $width, $height, $color )

参数

  • img 使用 imagecreatetruecolor() 创建一个空白图像

  • cx 圆心的 x 坐标。

  • cy 圆心的 y 坐标。

  • width 椭圆宽度。

  • height 椭圆高度。

  • color 填充颜色。

返回

imagefilledellipse() 函数在成功时返回 TRUE,失败时返回 FALSE。

示例

以下是一个示例

<?php
   $img = imagecreatetruecolor(450, 290);
   $bgColor = imagecolorallocate($img, 140, 180, 140);
   imagefill($img, 0, 0, $bgColor);
   $ellipse = imagecolorallocate($img, 120, 50, 70);
   imagefilledellipse($img, 225, 150, 400, 250, $ellipse);
   header("Content-type: image/png");
   imagepng($img);
?>

以下是输出

更新日期:2019 年 12 月 31 日

118 次浏览

启动您的 职业生涯

完成课程以通过认证

开始学习
Advertisement 广告