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


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


ImagickDraw::setTextAntialias() 函数是 PHP 的内置函数,用于控制文本是否抗锯齿。默认情况下,文本是抗锯齿的。

用法:

bool ImagickDraw::setTextAntialias( $antiAlias )

参数:此函数接受单个参数 $antiAlias,用于存储布尔信号,即 TRUE/FALSE。

返回值:此函数不返回任何值。

以下示例程序旨在说明 PHP 中的 ImagickDraw::setTextAntialias() 函数:



程序1:


<?php
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
   
// Set the image filled color
$draw->setFillColor('green');
  
// Set the font size
$draw->setFontSize(50);
  
// Set the Text Antialias
$draw->setTextAntialias(false);
  
// Set the text to be added
$draw->annotation(50, 75, "Gfg!");
  
// Create new Imagick object 
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(500, 160, 'black');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image
$imagick->drawImage($draw);
header("Content-Type:image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

输出:
setTextAntialias

程序2:


<?php
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
  
// Set the image filled color 
$draw->setFillColor('orange');
  
// Set the font size
$draw->setFontSize(50);
  
// Set the TextAntialias function
$draw->setTextAntialias(true);
  
// Set the text to be added
$draw->annotation(5, 75, "Gfg!");
  
// Set the TextAntialias function
$draw->setTextAntialias(false);
  
// Set the text to be added
$draw->annotation(105, 75, "Gfg!");
  
// Create new Imagick object
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(300, 160, 'green');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image
$imagick->drawImage($draw);
header("Content-Type:image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

输出:
setTextAntialias

参考: http://php.net/manual/en/imagickdraw.settextantialias.php




相关用法


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