La función Imagick::setFont() es una función incorporada en PHP que se usa para configurar la fuente.
Sintaxis:
bool Imagick::setFont( string $font )
Parámetros: esta función acepta un único parámetro $fuente que contiene el nombre del archivo de fuente.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Extensiones: la extensión GD debe instalarse para esta función.
Los siguientes programas ilustran la función Imagick::getFont() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Use setFont() function to set the // font using .ttf font file. The .ttf // file is placed in same folder $imagick->setFont('Windsong.ttf'); // Write a caption in image format $imagick->newPseudoImage(800, 350, "caption:GeekforGeeks"); // Show the output $imagick->setformat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Set the font - make sure .ttf font file // is placed in same folder $imagick->setFont('FFF_Tusj.ttf'); // Write the caption in a image $imagick->newPseudoImage(800, 350, "caption:GeekforGeeks"); // Show the output $imagick->setformat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagick.setfont.php