imagefilledellipse
<?php
/*
imagefilledellipse
楕円形を描画します。
*/
//コンテンツをPNG画像に指定
header("Content-type: image/png");
//リソースを確保
$img = imagecreatetruecolor(400, 300);
//四角形の色を指定(黄色)
$ellipse = imagecolorallocate($img, 255, 255, 0);
//楕円形を描画します
imagefilledellipse($img, 200, 150, 100, 200, $ellipse);
//画像リソースをpngファイルとして表示
imagepng($img);
//解放処理
imagedestroy($img);
/*
imagefilledellipse
第1引数:背景となるベース
第3引数:x座標
第4引数:y座標
第5引数:幅
第6引数:高さ
第7引数:楕円の色
[出力結果]
縦長の楕円形が描画されます。
*/
?>
|
|