ImagickDraw::setStrokeAntialias()函数是PHP中的内置函数,用于设置当前笔划抗锯齿设置。描边轮廓默认情况下是抗锯齿(启用)的。别名只是笔画中的噪音或失真。
用法:
bool ImagickDraw::setStrokeAntialias( bool $stroke_antialias)
参数:该函数接受单个参数$stroke_antialias,该参数保存抗锯齿设置。
返回值:成功时此函数返回TRUE。
异常:该函数在错误时引发ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::setStrokeAntialias()函数:
程序1:
<?php
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Disable stroke antialias
$draw->setStrokeAntialias(false);
// Get the stroke antialias
$strokeAntialias = $draw->getStrokeAntialias() ? 'true' : 'false';
echo $strokeAntilias;
?>
输出:
false
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'yellow');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the fill color
$draw->setFillColor('cyan');
// Set the width of stroke
$draw->setStrokeWidth(1);
// Set the color of stroke
$draw->setStrokeColor('green');
// Set the font size
$draw->setFontSize(70);
// Disable stroke antialias
$draw->setStrokeAntialias(false);
// Annotate a text
$draw->annotation(50, 200, 'GeeksforGeeks');
// 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.setstrokeantialias.php
相关用法
- PHP ImagickDraw arc()用法及代码示例
- PHP ImagickDraw pop()用法及代码示例
- PHP ImagickDraw pathCurveToQuadraticBezierRelative()用法及代码示例
- PHP ImagickDraw getFont()用法及代码示例
- PHP ImagickDraw setTextInterlineSpacing()用法及代码示例
- PHP ImagickDraw clone()用法及代码示例
- 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 setStrokeAntialias() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。