ImagickDraw::setTextAntialias

(PECL imagick 2, PECL imagick 3)

ImagickDraw::setTextAntialiasControls whether text is antialiased

Описание

public ImagickDraw::setTextAntialias ( bool $antiAlias ) : bool
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Controls whether text is antialiased. Text is antialiased by default.

Список параметров

antiAlias

Возвращаемые значения

Эта функция не возвращает значения после выполнения.

Примеры

Пример #1 ImagickDraw::setTextAntialias()

<?php
function setTextAntialias($fillColor$backgroundColor) {

    
$draw = new \ImagickDraw();
    
$draw->setStrokeColor('none');
    
$draw->setFillColor($fillColor);
    
$draw->setStrokeWidth(1);
    
$draw->setFontSize(32);
    
$draw->setTextAntialias(false);
    
$draw->annotation(530"Lorem Ipsum!");
    
$draw->setTextAntialias(true);
    
$draw->annotation(565"Lorem Ipsum!");

    
$imagick = new \Imagick();
    
$imagick->newImage(22080$backgroundColor);
    
$imagick->setImageFormat("png");
    
$imagick->drawImage($draw);

    
//Scale the image so that people can see the aliasing.
    
$imagick->scaleImage(220 680 6);
    
$imagick->cropImage(64048000);

    
header("Content-Type: image/png");
    echo 
$imagick->getImageBlob();
}

?>