imagefilledpolygon

(PHP 3, PHP 4, PHP 5)

imagefilledpolygon -- 畫一多邊形並填充

說明

bool imagefilledpolygon ( resource image, array points, int num_points, int color )

imagefilledpolygon()image 圖像中畫一個填充了的多邊形。

points 參數是一個按順序包括有多邊形各頂點的 xy 坐標的陣列。

num_points 參數是頂點的總數,必須大於 3。

例子 1. imagefilledpolygon() 例子

<?php
// 建立多邊形各頂點坐標的陣列
$values = array(
            
40,  50,  // Point 1 (x, y)
            
20,  240// Point 2 (x, y)
            
60,  60,  // Point 3 (x, y)
            
24020,  // Point 4 (x, y)
            
50,  40,  // Point 5 (x, y)
            
10,  10   // Point 6 (x, y)
            
);

// 建立圖像
$image imagecreatetruecolor(250250);

// 設定彩色
$bg   imagecolorallocate($image200200200);
$blue imagecolorallocate($image00255);

// 畫一個多邊形
imagefilledpolygon($image$values6$blue);

// 輸出圖像
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>