PHP
 Computer >> コンピューター >  >> プログラミング >> PHP

PHPでimageellipse()関数を使用して楕円を描く方法は?


imageellipse() 楕円を描くために使用されるPHPの組み込み関数です。成功するとTrueを返し、失敗するとFalseを返します。

構文

Bool imageellipse($image, $cx, $cy, $width, $height, $color)

パラメータ

imageellipse() 6つの異なるパラメータを取ります: $ image $ cx $ cy $ width $ height $ color

  • $ 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);
?>

出力

PHPでimageellipse()関数を使用して楕円を描く方法は?

例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()関数を使用して楕円を描く方法は?


  1. PHPのimagedashedline()関数

    imagedashedline()関数は破線を描画します。 構文 imagedashedline( $image , $x1 , $y1 , $x2 , $y2 , $color ) パラメータ 画像 imagecreatetruecolor()を使用して空白の画像を作成します。 x1 左上のx座標 y1 左上のy座標 x2 右下のx座標 y2 右下のy座標 色 塗りつぶしの色。 戻る この関数は、成功した場合はTRUEを返し、失敗した場合はFALSEを返します。 例 次に例を示します。 <?php   &

  2. Javaを使用してOpenCVで楕円を描く方法は?

    Java OpenCVライブラリのorg.opencv.imgprocパッケージには、Imgprocという名前のクラスが含まれています。楕円を描くには、 ellipse()を呼び出す必要があります このクラスのメソッド。このメソッドは、次のパラメーターを受け入れます- 楕円が描画される画像を表すマットオブジェクト。 RotatedRectオブジェクト(楕円はこの長方形に内接して描かれています。) Rectangle(BGR)の色を表すScalarオブジェクト。 長方形の厚さを表す整数(デフォルト:1)。 例 import org.opencv.core.Core;