La función GmagickDraw::getfont() es una función incorporada en PHP que se utiliza para obtener la string que especifica la fuente utilizada al anotar con texto.
Sintaxis:
string GmagickDraw::getfont( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve un valor de string que contiene la fuente.
Excepciones: esta función lanza GmagickDrawException en caso de error.
Los siguientes programas ilustran la función GmagickDraw::getfont() en PHP:
Programa 1:
<?php // Create a new GmagickDraw object $draw = new GmagickDraw(); // Get the font $font = $draw->getfont(); echo $font; ?>
Producción:
Empty string which is the default font.
Imagen usada:
Programa 2:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Create a GmagickDraw object $draw = new GmagickDraw(); // Set the color $draw->setFillColor('#0E0E0E'); // Draw rectangle for background $draw->rectangle(-10, -10, 800, 400); // Set the fill color $draw->setFillColor('yellow'); // Set the font size $draw->setFontSize(20); // Set the font to a ttf file which should be // placed in same folder where the program is. $draw->setFont('Pacifico.ttf'); // Annotate a text $draw->annotate(50, 120, 'The Font here is ' . $draw->getfont() . '.'); // Use of drawimage functeannotate $gmagick->drawImage($draw); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/gmagickdraw.getfont.php