PHP | Función GmagickDraw setfont()

La función GmagickDraw::setfont() es una función incorporada en PHP que se usa para configurar la fuente completamente especificada para usar al anotar con texto.

Sintaxis:

GmagickDraw GmagickDraw::setfont( string $font )

Parámetros: esta función acepta un único parámetro $fuente que se utiliza para contener el valor del nombre de la fuente como string.

Valor de retorno: esta función devuelve el objeto GmagickDraw en caso de éxito.

Excepciones: esta función lanza GmagickDrawException en caso de error.

Los siguientes programas ilustran la función GmagickDraw::setfont() en PHP:
Programa 1:

<?php
// Create a GmagickDraw object
$draw = new GmagickDraw();
  
// Set the font using a local ttf file
$draw->setfont('roboto.ttf');
  
// Get the font
$font = $draw->getfont();
echo $font;
?>

Producción:

/home/user/php/roboto.ttf

Programa 2:

<?php
// Create a new Gmagick object
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Create a GmagickDraw object
$draw = new GmagickDraw();
  
// Draw rectangle for background
$draw->rectangle(-100, -1000, 800, 400);
  
// Set the font size
$draw->setfontsize(90);
  
// Set the stroke color
$draw->setstrokecolor('red');
  
// Set the font
$draw->setfont('Pacifico.ttf');
  
// Create a rectangle
$draw->annotate(20, 110, 'GeeksforGeeks');
  
// Use of drawimage function
$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.setfont.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *