imagefilledellipse
(PHP 4 >= 4.0.6, PHP 5)
imagefilledellipse -- 塗りつぶされた楕円を描画する
説明
bool
imagefilledellipse ( resource image, int cx, int cy, int width, int height, int color )
指定した image
の指定した座標を中心として楕円を描画します。
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例
例 1. imagefilledellipse() の例
<?php
// 空の画像を作成します $image = imagecreatetruecolor(400, 300);
// 背景色を塗ります $bg = imagecolorallocate($image, 0, 0, 0);
// 楕円の色を選択します $col_ellipse = imagecolorallocate($image, 255, 255, 255);
// 白い楕円を描画します imagefilledellipse($image, 200, 150, 300, 200, $col_ellipse);
// 画像を出力します header("Content-type: image/png"); imagepng($image);
?>
|
上の例の出力は、たとえば
以下のようになります。 |
注意
注意: この関数は、GD 2.0.1 以降を必要とします (2.0.28 以降を推奨します)。