ImagickDraw::getClipPath()函数是PHP中的内置函数,用于获取当前的剪切路径ID。
用法:
string ImagickDraw::getClipPath( void )
参数:此函数不接受任何参数。
返回值:此函数返回包含剪辑路径ID的字符串值,如果不存在剪辑路径,则返回false。
异常:该函数在错误时引发ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getClipPath()函数:
程序1:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Get clip path
echo $draw->getClipPath();
?>
输出:
//This will return empty string because default value is empty.
程序2:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the clipPath
$draw->setClipPath('sample_name');
// Get clip path
echo $draw->getClipPath();
?>
输出:
sample_name
参考: https://www.php.net/manual/en/imagickdraw.getclippath.php
相关用法
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw getStrokeMiterLimit()用法及代码示例
- PHP ImagickDraw pathStart()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierSmoothAbsolute()用法及代码示例
- PHP ImagickDraw getStrokeLineCap()用法及代码示例
- PHP ImagickDraw setFontWeight()用法及代码示例
- PHP ImagickDraw getStrokeLineJoin()用法及代码示例
- PHP ImagickDraw setFontSize()用法及代码示例
- PHP ImagickDraw setStrokeLineCap()用法及代码示例
- PHP ImagickDraw getStrokeAntialias()用法及代码示例
- PHP ImagickDraw setTextAntialias()用法及代码示例
- PHP ImagickDraw setTextDecoration()用法及代码示例
- PHP ImagickDraw setTextUnderColor()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw getClipPath() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。