update : 2015.11.03
php.shukuma.com

검색:
 
 
Sets the font family to use when annotating with text

ImagickDraw::setFontFamily

(PECL imagick 2.0.0)

ImagickDraw::setFontFamilySets the font family to use when annotating with text

설명

bool ImagickDraw::setFontFamily ( string $font_family )
Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

Sets the font family to use when annotating with text.

인수

font_family

the font family

반환값

성공시에 TRUE를 반환합니다.

예제

Example #1 ImagickDraw::setFontFamily()

<?php
function setFontFamily($fillColor$strokeColor$backgroundColor) {

    
$draw = new \ImagickDraw();

    
$strokeColor = new \ImagickPixel($strokeColor);
    
$fillColor = new \ImagickPixel($fillColor);

    
$draw->setStrokeColor($strokeColor);
    
$draw->setFillColor($fillColor);

    
$draw->setStrokeWidth(2);

    
$draw->setFontSize(48);

    
$draw->setFontFamily("Times");
    
$draw->annotation(5050"Lorem Ipsum!");

    
$draw->setFontFamily("AvantGarde");
    
$draw->annotation(50100"Lorem Ipsum!");

    
$draw->setFontFamily("NewCenturySchlbk");    
    
$draw->annotation(50150"Lorem Ipsum!");

    
$draw->setFontFamily("Palatino");
    
$draw->annotation(50200"Lorem Ipsum!");

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

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

?>