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

PHPのimagearc()関数


imagearc()関数は、円弧を描くために使用されます。

構文

imagearc( $img, $cx, $cy, $width, $height, $start, $end, $color )

パラメータ

  • $ img :imagecreatetruecolor()を使用して画像を作成します。

  • $ cx :中心のx座標。

  • $ cy :中心のy座標。

  • $ width :円弧の幅。

  • $ height :円弧の高さ。

  • $ start :アークの開始角度(度単位)。

  • $ end :アークの終了角度(度単位)。

  • $ color :画像の色を設定します。

戻る

imagearc()関数は、成功した場合はTRUEを返し、失敗した場合はFALSEを返します。

次に例を示します。

<?php
   $img = imagecreatetruecolor(200, 200);
   $one = imagecolorallocate($img, 100, 50, 255);
   $two = imagecolorallocate($img, 30, 255, 150);  
   imagearc($img, 100, 100, 200, 200, 0, 360, $one);
   imagearc($img, 130, 50, 100, 150, 25, 155, $two);
   header("Content-type: image/png");
   imagepng($img);
   imagedestroy($img);
?>

出力

出力は次のとおりです。

PHPのimagearc()関数

円弧の座標と角度が異なる別の例を見てみましょう。

<?php
$img = imagecreatetruecolor(250, 250);
$one = imagecolorallocate($img, 100, 90, 255);
$two = imagecolorallocate($img, 100, 255, 190);  
imagearc($img, 130, 100, 200, 200, 0, 360, $one);
imagearc($img, 140, 50, 140, 150, 95, 155, $two);
header("Content-type: image/png");
imagepng($img);
imagedestroy($img);
?>

出力

出力は次のとおりです。

PHPのimagearc()関数


  1. PHPのimagefilledrectangle()関数

    imagefilledrectangle()関数は、塗りつぶされた長方形を描画します。 構文 imagefilledrectangle( $img, $x1, $y1, $x2, $y2, $color ) パラメータ 画像 imagecreatetruecolor()を使用して空白の画像を作成します。 x1 ポイント1のx座標。 y1 ポイント1のy座標。 x2 ポイント2のx座標。 y2 ポイント2のy座標。 色 塗りつぶしの色。 戻る imagefilledrectangle()関数は、成功した場合はTRUEを返し、失

  2. PHPのimagefilledellipse()関数

    imagefilledellipse()関数は、塗りつぶされた楕円を描画するために使用されます。 構文 imagefilledellipse( $img, $cx, $cy, $width, $height, $color ) パラメータ img これにより、imagecreatetruecolor()を使用して空白の画像が作成されます。 cx 中心のx座標。 cy 中心のy座標。 幅 楕円の幅。 高さ 楕円の高さ。 色 塗りつぶしの色。 戻る imagefilledellipse()関数は、成功した場合はTRUEを返し、失敗した場合はFA