update : 2015.11.03
php.shukuma.com

검색:
 
 
Sets font

Imagick::setFont

(PECL imagick 2.1.0)

Imagick::setFontSets font

설명

bool Imagick::setFont ( string $font )

Sets object's font property. This method can be used for example to set font for caption: pseudo-format. The font needs to be configured in ImageMagick configuration or a file by the name of font must exist. This method should not be confused with ImagickDraw::setFont() which sets the font for a specific ImagickDraw object. 이 메쏘드는 Imagick을 ImageMagick 6.3.7 이상으로 컴파일 했을 때만 사용할 수 있습니다.

인수

font

Font name or a filename

반환값

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

참고

예제

Example #1 A Imagick::setFont() example

Example of using Imagick::setFont

<?php
/* Create new imagick object */
$im = new Imagick();

/* Set the font for the object */
$im->setFont("example.ttf");

/* Create new caption */
$im->newPseudoImage(100100"caption:Hello");

/* Do something with the image */
?>