(PECL imagick 2.1.0)
Imagick::setFont — Sets the image bias for any method that convolves an image
This function is currently not documented; only its argument list is available.
This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk.
Sets object's font property. This method can be used for example to set font for caption: pseudo-format. This method is available if Imagick is compile against at least version 6.3.6-4 of ImageMagick.
Font name or a filename
Returns TRUE on success.
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(100, 100, "caption:Hello");
/* Do something with the image */
?>