PHP | Función ImagickDraw getFontFamily()

La función ImagickDraw::getFontFamily() es una función incorporada en PHP que se utiliza para obtener la familia de fuentes que se utilizará al anotar con texto. Indica el tamaño y el estilo específicos del texto que se utilizará y hay muchas familias de fuentes disponibles como Times, AvantGarde, NewCenturySchlbk, Palatino, etc.

Sintaxis:

string ImagickDraw::getFontFamily( 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 el nombre de la familia de fuentes.

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

Los siguientes programas ilustran la función ImagickDraw::getFontFamily() en PHP:

Programa 1:

<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the font
$draw->setFontFamily("Palatino");
  
// Get the font
$font = $draw->getFontFamily();
echo $font;
?>

Producción:

Palatino

Programa 2:

<?php
   
// Create a new imagick object
$imagick = new Imagick();
   
// Create a image on imagick object
$imagick->newImage(800, 250, 'grey');
   
// Create a new ImagickDraw object
$draw = new ImagickDraw();
   
// Set the font size
$draw->setFontSize(50);
   
// Annotate a text
$draw->annotation(50, 100, 
          'The Font Family here is default.');
   
// Set the font family
$draw->setFontFamily("sans-sarif");
   
// Set the font size
$draw->setFontSize(50);
   
// Annotate a text
$draw->annotation(50, 200, 
                  'The Font Family here is ' 
                  . $draw->getFontFamily() . '.');
   
// Render the draw commands
$imagick->drawImage($draw);
   
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

Producción:

Referencia: https://www.php.net/manual/en/imagickdraw.getfontfamily.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 *