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


PHP ImagickDraw getFillRule()用法及代碼示例


ImagickDraw::getFillRule()函數是PHP中的一個內置函數,用於獲取繪製多邊形時使用的填充規則。

用法:

int ImagickDraw::getFillRule( void )

參數:此函數不接受任何參數。


返回值:此函數返回與FILLRULE常量之一相對應的整數值。

FILLRULE常量列表如下:

  • imagick::FILLRULE_UNDEFINED(0)
  • imagick::FILLRULE_EVENODD(1)
  • imagick::FILLRULE_NONZERO(2)

異常:該函數在錯誤時引發ImagickException。

以下示例程序旨在說明PHP中的ImagickDraw::getFillRule()函數:

程序1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Get the Fill Rule 
$fillRule = $draw->getFillRule(); 
echo $fillRule; 
?>

輸出:

1 // Which is the default value corresponding to imagick::FILLRULE_EVENODD

程序2:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the Fill Rule 
$draw->setFillRule(2); 
  
// Get the Fill Rule 
$fillRule = $draw->getFillRule(); 
echo $fillRule; 
?>

輸出:

2 // Which corresponds to imagick::FILLRULE_NONZERO.

參考: https://www.php.net/manual/en/imagickdraw.getfillrule.php



相關用法


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