(PHP 4 >= 4.0.6, PHP 5)
imageellipse — 楕円を描画する
指定した座標を中心とする楕円を描画します。
imagecreatetruecolor() のような画像作成関数が返す画像リソース。
中心の x 座標。
中心の y 座標。
楕円の幅。
楕円の高さ。
楕円の色を、 imagecolorallocate() で作成した画像 ID で指定します。
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例1 imageellipse() の例
<?php
// 空の画像を生成します
$image = imagecreatetruecolor(400, 300);
// 背景色を選択します
$bg = imagecolorallocate($image, 0, 0, 0);
// 上で選択した色で背景を塗ります
imagefill($image, 0, 0, $bg);
// 楕円の色を選択します
$col_ellipse = imagecolorallocate($image, 255, 255, 255);
// 楕円を描画します
imageellipse($image, 200, 150, 300, 200, $col_ellipse);
// 画像を出力します
header("Content-type: image/png");
imagepng($image);
?>
上の例の出力は、たとえば 以下のようになります。
注意: この関数は GD 2.0.2 以降を必要とします。