imageopenpolygon()函數是PHP中的內置函數,用於繪製開放的多邊形。
用法:
bool imageopenpolygon( resource $image, array $points, int $num_points, int $color )
參數:該函數接受上述和以下所述的四個參數:
- $image:它指定要處理的圖像資源。
- $points:它指定多邊形的點。
- $num_points:它指定點數。
- $color:它指定多邊形的顏色。
返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。
以下示例說明了PHP中的imageopenpolygon()函數:
範例1:在此示例中,我們將在空白圖形上繪製多邊形。
<?php
// Create a blank image
$image = imagecreatetruecolor(400, 300);
// Prepare the colors
$red = imagecolorallocate($image, 255, 0, 0);
// Points of array
$points = array(
80, 150,
150, 250,
300, 250,
370, 150,
230, 50,
80, 150
);
// Create an polygon
imageopenpolygon($image, $points, 6, $red);
// Output to browser
header('Content-type:image/png');
imagepng($image);
imagedestroy($image);
?>
輸出:
範例2:在此示例中,在圖像上繪製多邊形。
<?php
// Create an image instance
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Prepare the colors
$red = imagecolorallocate($image, 255, 0, 0);
// Points of array
$points = array(
10, 10,
660, 10,
660, 100,
10, 100,
10, 10
);
// Create an polygon
imageopenpolygon($image, $points, 5, $red);
// Output to browser
header('Content-type:image/png');
imagepng($image);
imagedestroy($image);
?>
輸出:
參考: https://www.php.net/manual/en/function.imageopenpolygon.php
相關用法
- CSS url()用法及代碼示例
- p5.js pow()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP next()用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js value()用法及代碼示例
- p5.js hex()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imageopenpolygon() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。