(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
imageellipse — 画椭圆
$image
,$center_x
,$center_y
,$width
,$height
,$color
绘制以指定坐标为中心的椭圆。
image
由图象创建函数(例如imagecreatetruecolor())返回的 GdImage 对象。
center_x
中间的 x 坐标。
center_y
中间的 y 坐标。
width
椭圆的宽度。
height
椭圆的高度。
color
椭圆的颜色。颜色标识符使用 imagecolorallocate() 创建。
示例 #1 imageellipse() 示例
<?php
// 新建一个空白图像
$image = imagecreatetruecolor(400, 300);
// 填充背景色
$bg = imagecolorallocate($image, 0, 0, 0);
// 选择椭圆的颜色
$col_ellipse = imagecolorallocate($image, 255, 255, 255);
// 画一个椭圆
imageellipse($image, 200, 150, 300, 200, $col_ellipse);
// 输出图像
header("Content-type: image/png");
imagepng($image);
?>
以上示例的输出类似于:
注意:
imageellipse() 忽略 imagesetthickness()。