ImagickDraw::getClipRule()函數是PHP中的內置函數,用於獲取剪切路徑要使用的當前多邊形填充規則。
用法:
int ImagickDraw::getClipRule( void )
參數:此函數不接受任何參數。
返回值:此函數返回與FILLRULE常量之一相對應的整數值。
FILLRULE常量列表如下:
- imagick::FILLRULE_UNDEFINED(0)
- imagick::FILLRULE_EVENODD(1)
- imagick::FILLRULE_NONZERO(2)
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的ImagickDraw::getClipRule()函數:
程序1:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Get the clipRule
$clipRule = $draw->getClipRule();
echo $clipRule;
?>
輸出:
1 // which is the default value.
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(500, 250, 'green');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
$draw->setClipRule(imagick::FILLRULE_EVENODD);
$draw->setFontSize(24);
$draw->annotation(160, 125,
'The clipRule is '
. $draw->getClipRule() . '.');
// Render the draw commands
$imagick->drawImage($draw);
// Show the output
$imagick->setImageFormat('png');
header("Content-Type:image/png");
echo $imagick->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/imagickdraw.getcliprule.php
相關用法
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw pathCurveToQuadraticBezierSmoothAbsolute()用法及代碼示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw setStrokeLineCap()用法及代碼示例
- PHP ImagickDraw setFontSize()用法及代碼示例
- PHP ImagickDraw pathStart()用法及代碼示例
- PHP ImagickDraw getStrokeLineJoin()用法及代碼示例
- PHP ImagickDraw getStrokeLineCap()用法及代碼示例
- PHP ImagickDraw setFontWeight()用法及代碼示例
- PHP ImagickDraw setTextAntialias()用法及代碼示例
- PHP ImagickDraw setTextDecoration()用法及代碼示例
- PHP ImagickDraw setTextUnderColor()用法及代碼示例
- PHP ImagickDraw polygon()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw getClipRule() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。