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
相关用法
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw setTextInterlineSpacing()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierRelative()用法及代码示例
- PHP ImagickDraw clone()用法及代码示例
- PHP ImagickDraw getFont()用法及代码示例
- PHP ImagickDraw resetVectorGraphics()用法及代码示例
- PHP ImagickDraw setFillAlpha()用法及代码示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw getTextInterwordSpacing()用法及代码示例
- PHP ImagickDraw setFillOpacity()用法及代码示例
- PHP ImagickDraw getFontWeight()用法及代码示例
- PHP ImagickDraw getTextEncoding()用法及代码示例
- PHP ImagickDraw setTextEncoding()用法及代码示例
- PHP ImagickDraw comment()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw getFillRule() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。