首頁  >  文章  >  後端開發  >  如何使用PHP中的imagefilledpolygon()函數繪製填滿的多邊形?

如何使用PHP中的imagefilledpolygon()函數繪製填滿的多邊形?

王林
王林轉載
2023-09-14 17:45:08971瀏覽

imagefilledpolygon() 是一個內建 PHP 函數,用於繪製填滿多邊形。

語法

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

參數

imagefilledpolygon()採用四個不同的參數- $image、$ points、$ num_points 和$顏色。

  • $圖片 - 使用 imagecreatetruecolor() 函數建立給定尺寸的空白圖像。

  • $points - 儲存多邊形的連續頂點。

  • $num_points - 包含多邊形中的頂點總數。點/頂點的總數必須至少為三個才能建立多邊形。

  • $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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除