|
PHP5中文手册
imagefilledellipse(PHP 4 >= 4.0.6, PHP 5) imagefilledellipse — 画一椭圆并填充 说明
bool imagefilledellipse
( resource $image
, int $cx
, int $cy
, int $w
, int $h
, int $color
)
imagefilledellipse() 在 image 所代表的图像中以 cx ,cy (图像左上角为 0, 0)为中心画一个椭圆。w 和 h 分别指定了椭圆的宽和高。椭圆用 color 颜色填充。如果成功则返回 TRUE,失败则返回 FALSE。
Example#1 imagefilledellipse() 例子
<?php
|