imagepolygon()函數是PHP中的一個內置函數,用於繪製多邊形。成功時此函數返回TRUE,否則返回FALSE。
用法:
bool imagepolygon( $image, $points, $num_points, $color )
參數:該函數接受上述和以下所述的四個參數:
- $image:imagecreatetruecolor()函數用於創建給定尺寸的空白圖像。
- $points:此參數用於保存多邊形的連續頂點。
- $num_points:此參數包含一個頂點中的頂點總數。它必須大於3,因為創建多邊形至少需要三個頂點。
- $color:此變量包含填充的顏色標識符。使用imagecolorallocate()函數創建的顏色標識符。
返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。
以下示例程序旨在說明PHP中的imagepolygon()函數。
程序1:
<?php
// Set the vertices of polygon
$values = array(
150, 50, // Point 1 (x, y)
50, 250, // Point 2 (x, y)
250, 250 // Point 3 (x, y)
);
// Create the size of image or blank image
$image = imagecreatetruecolor(300, 300);
// Set the background color of image
$background_color = imagecolorallocate($image, 0, 153, 0);
// Fill background with above selected color
imagefill($image, 0, 0, $background_color);
// Allocate a color for the polygon
$image_color = imagecolorallocate($image, 255, 255, 255);
// Draw the polygon
imagepolygon($image, $values, 3, $image_color);
// Output the picture to the browser
header('Content-type: image/png');
imagepng($image);
?>
輸出:
程序2:
<?php
// Set the vertices of 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)
);
// Create the size of image or blank image
$image = imagecreatetruecolor(300, 300);
// Set the background color of image
$background_color = imagecolorallocate($image, 0, 153, 0);
// Fill background with above selected color
imagefill($image, 0, 0, $background_color);
// Allocate a color for the polygon
$col_poly = imagecolorallocate($image, 255, 255, 255);
// Draw the polygon
imagepolygon($image, $values, 5, $col_poly);
// Output the picture to the browser
header('Content-type: image/png');
imagepng($image);
?>
輸出:
相關文章:
參考: http://php.net/manual/en/function.imagepolygon.php
相關用法
- p5.js nfp()用法及代碼示例
- p5.js nfc()用法及代碼示例
- p5.js nfs()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- CSS var()用法及代碼示例
- PHP next()用法及代碼示例
注:本文由純淨天空篩選整理自Vishal_Khoda大神的英文原創作品 PHP | imagepolygon() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。