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


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


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

用法:

bool ImagickDraw::getStrokeAntialias( void )

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


返回值:此函数返回包含笔划抗锯齿设置的布尔值。 TRUE表示启用,FALSE表示禁用。

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

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

示例1:

<?php 
  
// Create a new ImagickDraw object 
$draw = new ImagickDraw(); 
  
// Get the stroke antialias 
$strokeAntialias = $draw->getStrokeAntialias() ? 'true' : 'false'; 
echo $strokeAntilias; 
?>

输出:

true

示例2:

<?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

示例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('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



相关用法


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