📜  PHP | imagickdraw setStrokeAntialias()函数

📅  最后修改于: 2022-05-13 01:56:49.226000             🧑  作者: Mango

PHP | imagickdraw setStrokeAntialias()函数

ImagickDraw::setStrokeAntialias()函数是PHP中的一个内置函数,用于设置当前笔画抗锯齿设置。默认情况下,描边轮廓是抗锯齿(启用)的。别名只是笔画中的噪音或失真。

句法:

bool ImagickDraw::setStrokeAntialias( bool $stroke_antialias)

参数:此函数接受单个参数$stroke_antialias保存抗锯齿设置。

返回值:此函数在成功时返回 TRUE。

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::setStrokeAntialias()函数

方案一:

setStrokeAntialias(false);
  
// Get the stroke antialias
$strokeAntialias = $draw->getStrokeAntialias() ? 'true' : 'false';
echo $strokeAntilias;
?>

输出:

false

方案二:

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