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


PHP ImagickDraw setStrokeAntialias()用法及代碼示例


ImagickDraw::setStrokeAntialias()函數是PHP中的內置函數,用於設置當前筆劃抗鋸齒設置。描邊輪廓默認情況下是抗鋸齒(啟用)的。別名隻是筆畫中的噪音或失真。

用法:

bool ImagickDraw::setStrokeAntialias( bool $stroke_antialias)

參數:該函數接受單個參數$stroke_antialias,該參數保存抗鋸齒設置。


返回值:成功時此函數返回TRUE。

異常:該函數在錯誤時引發ImagickException。

下麵給出的程序說明了PHP中的ImagickDraw::setStrokeAntialias()函數:

程序1:

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

程序2:

<?php  
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->newImage(800, 250, 'yellow'); 
  
// 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('green'); 
  
// Set the font size 
$draw->setFontSize(70); 
  
// Disable stroke antialias 
$draw->setStrokeAntialias(false); 
  
// Annotate a text 
$draw->annotation(50, 200, 'GeeksforGeeks'); 
  
// 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.setstrokeantialias.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw setStrokeAntialias() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。