imagepolygon

(PHP 3, PHP 4, PHP 5)

imagepolygon -- 畫一個多邊形

說明

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

imagepolygon() 在圖像中建立一個多邊形。points 是一個 PHP 陣列,包括了多邊形的各個頂點坐標,即 points[0] = x0,points[1] = y0,points[2] = x1,points[3] = y1,以此類推。num_points 是頂點的總數。

例子 1. imagepolygon() 例子

<?php
// create a blank image
$image imagecreatetruecolor(400300);

// fill the background color
$bg imagecolorallocate($image000);

// choose a color for the polygon
$col_poly imagecolorallocate($image255255255);

// draw the polygon
imagepolygon($image,
             array (
                    
00,
                    
100200,
                    
300200
             
),
             
3,
             
$col_poly);

// output the picture
header("Content-type: image/png");
imagepng($image);

?>

參見 imagecreate()imagecreatetruecolor()