當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。