ホームページ > バックエンド開発 > PHPチュートリアル > PHPでimageellipse()関数を使用して楕円を描画するにはどうすればよいですか?

PHPでimageellipse()関数を使用して楕円を描画するにはどうすればよいですか?

WBOY
リリース: 2023-09-09 14:32:01
転載
864 人が閲覧しました

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 - 楕円の高さを設定します。

  • #$
  • Color

    - 楕円の色を設定します。 imagecolorallocate() 関数によって作成されたカラー識別子。 戻り値

  • 成功した場合は True を返し、失敗した場合は False を返します。

例 1

<?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);
?>
ログイン後にコピー

出力

例 2

<?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でimageellipse()関数を使用して楕円を描画するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:tutorialspoint.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート