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
相關用法
- PHP ImagickDraw arc()用法及代碼示例
- PHP ImagickDraw pop()用法及代碼示例
- PHP ImagickDraw getTextAlignment()用法及代碼示例
- PHP ImagickDraw destroy()用法及代碼示例
- PHP ImagickDraw setTextEncoding()用法及代碼示例
- PHP ImagickDraw getStrokeDashOffset()用法及代碼示例
- PHP ImagickDraw getTextEncoding()用法及代碼示例
- PHP ImagickDraw setFontWeight()用法及代碼示例
- PHP ImagickDraw getFillRule()用法及代碼示例
- PHP ImagickDraw setClipPath()用法及代碼示例
- PHP ImagickDraw setStrokeMiterLimit()用法及代碼示例
- PHP ImagickDraw getClipPath()用法及代碼示例
- PHP ImagickDraw color()用法及代碼示例
- PHP ImagickDraw comment()用法及代碼示例
- PHP ImagickDraw polyline()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickDraw getStrokeAntialias() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。