imageellipse() は PHP の組み込み関数で、楕円を描画するために使用されます。成功した場合は True を返し、失敗した場合は False を返します。
Bool imageellipse($image, $cx, $cy, $width, $height, $color)
imageellipse() 6 つの異なるパラメータを取ります: $image、 $ cx、$cy、$幅、 $高さ、$色。
#$< span>image - 作成されるイメージのサイズ。これは、imagecreatetruecolor() などのイメージ作成関数の 1 つによって返されます。
$cx - 中心の x 座標を設定します。
#$cy - 中心の y 座標を設定します。
width - 楕円の幅を設定します。
height - 楕円の高さを設定します。
- 楕円の色を設定します。 imagecolorallocate() 関数によって作成されたカラー識別子。 戻り値
<?php // Create a blank image. $image = imagecreatetruecolor(700, 350); // Select the background color. $bg = imagecolorallocate($image, 0, 0, 0); // Fill the background with the color selected above. imagefill($image, 0, 0, $bg); // Choose a color for the ellipse. $col_ellipse = imagecolorallocate($image, 255, 255, 255); // Draw the ellipse. imageellipse($image, 325, 175, 500, 175, $col_ellipse); // Output the image. header("Content-type: image/png"); imagepng($image); ?>
出力
<?php //It creates the blank image or size of the image. $image = imagecreatetruecolor(700, 600); //Set the background color of the image. $bg = imagecolorallocate($image, 122, 122, 122); //Fill background with the above-selected color. imagefill($image, 0, 0, $bg); // set color of the ellipse. $col_ellipse = imagecolorallocate($image, 0, 255, 255); // Function to draw the ellipse. imageellipse($image, 250, 300, 300, 550, $col_ellipse); // Output of the image. header("Content-type: image/gif"); imagepng($image); ?>
以上がPHPでimageellipse()関数を使用して楕円を描画するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。