ホームページ  >  記事  >  バックエンド開発  >  PHP で imagefilledpolygon() 関数を使用して塗りつぶされた多角形を描画するにはどうすればよいですか?

PHP で imagefilledpolygon() 関数を使用して塗りつぶされた多角形を描画するにはどうすればよいですか?

王林
王林転載
2023-09-14 17:45:08971ブラウズ

imagefilledpolygon() は、塗りつぶされた多角形を描画するための組み込み PHP 関数です。

構文

bool imagefilledpolygon($image, $points, $num_points, $color)

パラメータ

imagefilledpolygon()4つの異なるパラメータを取ります - $image、$ ポイント、$ num_points、および $color。

  • $Image - imagecreatetruecolor() 関数を使用して、指定された寸法の空白の画像を作成します。

  • #$points - ポリゴンの連続する頂点を保存します。

  • $num_points - ポリゴン内の頂点の総数が含まれます。ポリゴンを作成するには、ポイント/頂点の合計数が少なくとも 3 つ必要です。

  • $color - imagecolorallocate() 関数を使用して設定された色の識別子が含まれます。

戻り値

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

例 1

<?php
   // set up array of points for a polygon
   $values = array(
      40, 50, // Point 1 (x, y)
      20, 240, // Point 2 (x, y)
      60, 60, // Point 3 (x, y)
      240, 20, // Point 4 (x, y)
      50, 40, // Point 5 (x, y)
      10, 10 // Point 6 (x, y)
   );
   // create the image using imagecreatetruecolor function
   $img = imagecreatetruecolor(700, 350);

   // allocated the blue and gray colors
   $bg = imagecolorallocate($img, 122, 122, 122);
   $blue = imagecolorallocate($img, 0, 0, 255);

   // filled the background
   imagefilledrectangle($img, 0, 0, 350, 350, $bg);

   // draw a polygon
   imagefilledpolygon($img, $values, 6, $blue);

   // flush image
   header(&#39;Content-type: image/png&#39;);
   imagepng($img);
   imagedestroy($img);
?>

出力

PHP で imagefilledpolygon() 関数を使用して塗りつぶされた多角形を描画するにはどうすればよいですか?

例 2

<?php
   // Set the vertices of the polygon
   $values = array(
      150, 50, // Point 1 (x, y)
      55, 119, // Point 2 (x, y)
      91, 231, // Point 3 (x, y)
      209, 231, // Point 4 (x, y)
      245, 119 // Point 5 (x, y)
   );
   // It creates the size of the image or blank image.
   $img = imagecreatetruecolor(700, 350);

   // Set the gray background image color
   $bg = imagecolorallocate($img, 122, 122, 122);

   // Set the red image color
   $red = imagecolorallocate($img, 255, 0, 0);

   // fill the background
   imagefilledrectangle($img, 0, 0, 350, 350, $bg);

   // Draw the polygon image
   imagefilledpolygon($img, $values, 5, $red);

   // Output of the image.
   header(&#39;Content-type: image/png&#39;);
   imagepng($img);
   imagedestroy($img);
?>

出力

PHP で imagefilledpolygon() 関数を使用して塗りつぶされた多角形を描画するにはどうすればよいですか?

以上がPHP で imagefilledpolygon() 関数を使用して塗りつぶされた多角形を描画するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。