當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP imagefilledpolygon()用法及代碼示例


imagefilledpolygon()函數是PHP中的一個內置函數,用於繪製填充的多邊形。此函數成功返回TRUE,否則返回FALSE。

用法:

bool imagefilledpolygon( $image, $points, $num_points, $color )

參數:該函數接受上述和以下所述的四個參數:


  • $image:imagecreatetruecolor()函數用於創建給定尺寸的空白圖像。
  • $points:此參數用於保存多邊形的連續頂點。
  • $num_points:此參數包含一個頂點中的頂點總數。它必須大於3,因為創建多邊形至少需要三個頂點。
  • $color:此變量包含填充的顏色標識符。使用imagecolorallocate()函數創建的顏色標識符。

返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。

以下示例程序旨在說明PHP中的imagefilledpolygon()函數。

程序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) 
        ); 
   
// It create the size of image or blank image. 
$image = imagecreatetruecolor(300, 300); 
   
// Set image background color 
$bg   = imagecolorallocate($image, 255, 255, 255); 
  
// Set image color 
$gr = imagecolorallocate($image, 0, 153, 0); 
   
// fill the background 
imagefilledrectangle($image, 0, 0, 300, 300, $bg); 
   
// Draw the polygon 
imagefilledpolygon($image, $values, 3, $gr); 
   
// Output of the image. 
header('Content-type:image/png'); 
imagepng($image); 
?>

輸出:
Imagefilledcolor function

程序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) 
            ); 
   
// It create the size of image or blank image. 
$image = imagecreatetruecolor(300, 300); 
   
// Set image background color 
$bg   = imagecolorallocate($image, 255, 255, 255); 
  
// Set image color 
$blue = imagecolorallocate($image, 0, 153, 0); 
   
// fill the background 
imagefilledrectangle($image, 0, 0, 300, 300, $bg); 
   
// Draw the polygon 
imagefilledpolygon($image, $values, 5, $blue); 
   
// Output of the image. 
header('Content-type:image/png'); 
imagepng($image); 
imagedestroy($image); 
?>

輸出:
imagefilledcolor

相關文章:

參考: http://php.net/manual/en/function.imagefilledpolygon.php



相關用法


注:本文由純淨天空篩選整理自Vishal_Khoda大神的英文原創作品 PHP | imagefilledpolygon() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。