PHP | Función ImagickDraw getFont()

La función ImagickDraw::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 ImagickDraw::getFont( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve un valor de string que contiene el nombre de la fuente.

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

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

Programa 1:

<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Get the font
$font = $draw->getFont();
echo $font;
?>

Producción:

Empty string which is the default font.

Programa 2:

<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the font to a font file name which
// should be present in the same folder
$draw->setFont('roboto.ttf');
  
// Get the font
$font = $draw->getFont();
echo $font;
?>

Producción:

/home/user/php/roboto.ttf

Programa 3:

<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Create a image on imagick object
$imagick->newImage(800, 250, 'yellow');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the font size
$draw->setFontSize(30);
  
// Annotate a text
$draw->annotation(50, 100, 'The Font here is default.');
  
// 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->annotation(50, 200, 'The Font here is '
          . $draw->getFont() . '.');
  
// 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.getfont.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 *