close

 


說明

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 是頂點的總數。

<?php
// create a blank image
$image = imagecreatetruecolor(400, 300);

// fill the background color
$bg = imagecolorallocate($image, 0, 0, 0);

// choose a color for the polygon
$col_poly = imagecolorallocate($image, 255, 255, 255);

// draw the polygon
imagepolygon($image,
array (
0, 0,
100, 200,
300, 200
),
3,
$col_poly);

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

?>

arrow
arrow
    全站熱搜

    stockwfj3 發表在 痞客邦 留言(0) 人氣()