La función Imagick::getFont() es una función incorporada en PHP que se usa para obtener la fuente.
Sintaxis:
int Imagick::getFont( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve una string que contiene la dirección del archivo de fuente en caso de éxito.
El siguiente programa ilustra la función Imagick::getFont() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Set the Font - make sure that the // respective .ttf file is available in // the same folder. $imagick->setFont('Windsong.ttf'); // Get the Font $font = $imagick->getFont(); echo $font(); ?>
Producción:
/home/username/php/Windsong.ttf
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Set the Font - make sure that the // respective .ttf file is available in // the same folder. $imagick->setFont('FFF_Tusj.ttf'); // Get the Font $font = $imagick->getFont(); echo $font(); ?>
Producción:
/home/username/php/FFF_Tusj.ttf
Referencia: https://www.php.net/manual/en/imagick.getfont.php