PHP | Función ImagickDraw setFontFamily()

La función ImagickDraw::setFontFamily() es una función incorporada en PHP que se usa para configurar la familia de fuentes que se usará al anotar con texto.

Sintaxis: 

bool ImagickDraw::setFontFamily( $font_family )

Parámetros: esta función acepta un solo parámetro $font_family que se utiliza para contener el valor de la familia de fuentes como string.

Valor de retorno: esta función devuelve True en caso de éxito.

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

Programa 1:  

PHP

<?php
 
// Create an ImagickDraw object
$draw = new ImagickDraw();
 
// Set the image filled color
$draw->setFillColor('red');
 
// Set the Font size
$draw->setFontSize(40);
 
// Set the Font Family
$draw->setFontFamily('Ubuntu-Mono');
 
// Set the text to be added
$draw->annotation(30, 170, "GeeksForGeeks");
 
// Set the image filled color
$draw->setFillColor('green');
 
// Set the font size
$draw->setFontSize(30);
 
// Set the Font Family
$draw->setFontFamily('Open-Sans-Light-Italic');
 
// Set the text to be added
$draw->annotation(30, 250, "Ubuntu-Mono");
 
// Create new imagick object   
$imagick = new Imagick();
 
// Set the image dimension
$imagick->newImage(350, 300, 'white');
 
// Set the image formats
$imagick->setImageFormat("png");
 
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
 
// Display the image
echo $imagick->getImageBlob();
?>

Producción: 
 

setFontFamily

Programa 2: 

PHP

<?php
 
// Create an ImagickDraw object
$draw = new ImagickDraw();
 
// set the image filled color
$draw->setFillColor('Green');
 
// Set the font size
$draw->setFontSize(30);
 
// Set the Font Style
$draw->setFontFamily('Ani');
 
// Set the text to be added
$draw->annotation(30, 40, "GeeksForGeeks");
 
// Create new imagick object   
$imagick = new Imagick();
 
// Set the image dimension
$imagick->newImage(250, 70, 'white');
 
// Set the image format
$imagick->setImageFormat("png");
 
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
 
// Display the image
echo $imagick->getImageBlob();
?>

Producción: 
 

setFontFamily

Referencia: http://php.net/manual/en/imagickdraw.setfontfamily.php
 

Publicación traducida automáticamente

Artículo escrito por sarthak_ishu11 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 *