Syntax:int Imagick::getFont (void)
Parameters:This function takes no parameters.
Return Value:This function returns a string containing the address of the font file on success.The program below illustrates the
Imagick::getFont() functionin PHP:
Program 1:
// Create a new one imagick object
$imagick
=
new
Imagick();
// Install the font - make sure
// the corresponding .ttf file is available in
// same folder.
$imagick
-> setFont (
’Windsong.ttf’
);
// Get the font
$font
=
$imagick
-> getFont();
echo
$font
();
?>
Output:/home/username/php/Windsong.ttf
Program 2:
// Create a new imagick object
$imagick
=
new
Imagick();
// Install the font - make sure
// the corresponding .ttf file is available in
// same folder.
$imagick
-> setFont (
’FFF_Tusj.ttf’
);
// Get the font
$font
=
$imagick
-> getFont();
echo
$font
();
?>
Output:/home/username/php/FFF_Tusj.ttf
Link: https://www.php.net/manual/en/imagick.getfont.php