当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickDraw getTextAntialias()用法及代码示例


ImagickDraw::getTextAntialias()函数是PHP中的内置函数,用于获取当前的文本抗锯齿设置,该设置确定是否对文本进行抗锯齿。文本抗锯齿默认情况下处于启用状态。别名只是文本中的噪音或失真。

用法:

bool ImagickDraw::getTextAntialias( void )

参数:此函数不接受任何参数。


返回值:该函数返回一个布尔值,该值指示启用还是禁用了别名。

异常:该函数在错误时引发ImagickException。

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

示例1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Get the text antialias 
$textAntialias = $draw->getTextAntialias() ? 'true' : 'false'; 
echo $textAntialias; 
?>

输出:

true // which is the default value.

示例2:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Set the text antialias 
$draw->setTextAntialias(false); 
  
// Get the text antialias 
$textAntialias = $draw->getTextAntialias() ? 'true' : 'false'; 
echo $textAntialias; 
?>

输出:

false

示例3:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickDraw getTextAntialias() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。