imagefilledellipse

(PHP 4 >= 4.0.6, PHP 5, PHP 7)

imagefilledellipse塗りつぶされた楕円を描画する

説明

imagefilledellipse ( resource $image , int $cx , int $cy , int $width , int $height , int $color ) : bool

指定した image の指定した座標を中心として楕円を描画します。

パラメータ

image

imagecreatetruecolor() のような画像作成関数が返す画像リソース。

cx

中心の x 座標。

cy

中心の y 座標。

width

楕円の幅。

height

楕円の高さ。

color

塗りつぶし色。imagecolorallocate() で作成された色識別子。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

例1 imagefilledellipse() の例

<?php

// 空の画像を作成します
$image imagecreatetruecolor(400300);

// 背景色を塗ります
$bg imagecolorallocate($image000);

// 楕円の色を選択します
$col_ellipse imagecolorallocate($image255255255);

// 白い楕円を描画します
imagefilledellipse($image200150300200$col_ellipse);

// 画像を出力します
header("Content-type: image/png");
imagepng($image);

?>

上の例の出力は、 たとえば以下のようになります。

出力例 : imagefilledellipse()

注意

注意:

imagefilledellipse()imagesetthickness() を無視します。

参考