PHP | imagickdraw getTextAntialias()函数
ImagickDraw::getTextAntialias()函数是PHP中的一个内置函数,用于获取当前文本抗锯齿设置,确定文本是否抗锯齿。默认情况下启用文本抗锯齿。别名只是文本中的噪音或失真。
句法:
bool ImagickDraw::getTextAntialias( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个布尔值,它告诉是否启用或禁用 anitialias。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getTextAntialias()函数:
方案一:
getTextAntialias() ? 'true' : 'false';
echo $textAntialias;
?>
输出:
true // which is the default value.
方案二:
setTextAntialias(false);
// Get the text antialias
$textAntialias = $draw->getTextAntialias() ? 'true' : 'false';
echo $textAntialias;
?>
输出:
false
方案 3:
newImage(800, 250, 'black');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the fill color
$draw->setFillColor('white');
// Set the width of stroke
$draw->setStrokeWidth(1);
// Set the color of stroke
$draw->setStrokeColor('red');
// Set the font size
$draw->setFontSize(30);
// Get the Text antialias
$TextAntialias = $draw->getTextAntialias() ? 'true' : 'false';
// Annotate a text
$draw->annotation(50, 100, 'Text antialias here is ' . $TextAntialias);
// Disable Text antialias
$draw->setTextAntialias(false);
// Get the Text antialias
$TextAntialias = $draw->getTextAntialias() ? 'true' : 'false';
// Annotate a text
$draw->annotation(50, 200, 'Text antialias here is ' . $TextAntialias);
// 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.gettextantialias。 PHP