(PECL imagick 2.0.0)
Imagick::annotateImage — Annotates an image with text
이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.
Annotates an image with text.
The ImagickDraw object that contains settings for drawing the text
Horizontal offset in pixels to the left of text
Vertical offset in pixels to the baseline of text
The angle at which to write the text
The string to draw
성공시에 TRUE를 반환합니다.
Example #1 Using Imagick::annotateImage():
Annotate text on an empty image
<?php
/* Create some objects */
$image = new Imagick();
$draw = new ImagickDraw();
$pixel = new ImagickPixel( 'gray' );
/* New image */
$image->newImage(800, 75, $pixel);
/* Black text */
$pixel->setColor('black');
/* Font properties */
$draw->setFont('Bookman-DemiItalic');
$draw->setFontSize( 30 );
/* Create text */
$image->annotateImage($draw, 10, 45, 0, 'The quick brown fox jumps over the lazy dog');
/* Give image a format */
$image->setImageFormat('png');
/* Output the image with headers */
header('Content-type: image/png');
echo $image;
?>