PHP | imagickdraw getStrokeAntialias()函数
ImagickDraw::getStrokeAntialias()函数是PHP中的一个内置函数,用于获取当前笔画抗锯齿设置。默认情况下,描边轮廓是抗锯齿(启用)的。别名只是笔画中的噪音或失真。
句法:
bool ImagickDraw::getStrokeAntialias( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含笔画抗锯齿设置的布尔值。 TRUE 表示启用,FALSE 表示禁用。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getStrokeAntialias()函数:
方案一:
getStrokeAntialias() ? 'true' : 'false';
echo $strokeAntilias;
?>
输出:
true
方案二:
setStrokeAntialias(false);
// Get the stroke antialias
$strokeAntialias = $draw->getStrokeAntialias() ? 'true' : 'false';
echo $strokeAntilias;
?>
输出:
false
方案 3:
newImage(800, 250, 'black');
// 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('red');
// Set the font size
$draw->setFontSize(40);
// Get the stroke antialias
$strokeAntialias = $draw->getStrokeAntialias() ? 'true' : 'false';
// Annotate a text
$draw->annotation(50, 100, 'The stroke antialias here is ' . $strokeAntialias);
// Disable stroke antialias
$draw->setStrokeAntialias(false);
// Get the stroke antialias
$strokeAntialias = $draw->getStrokeAntialias() ? 'true' : 'false';
// Annotate a text
$draw->annotation(50, 200, 'The stroke antialias here is ' . $strokeAntialias);
// 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.getstrokeantialias。 PHP