PHP | Función ImagickDraw setFont()

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

Sintaxis:

bool ImagickDraw::setFont( $font_name )

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

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

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

Programa 1:

<?php 
  
// Create an ImagickDraw object. 
$draw = new ImagickDraw();
  
// Set the fill color
$draw->setFillColor('green');
      
// Set the Font Size
$draw->setFontSize(40);
   
// Set the Font Style
$draw->setFont("./font/IndieFlower.ttf");
  
// Set the text to be added
$draw->annotation(50, 50, "GeeksForGeeks");
   
// Set the Font Style
$draw->setFont("./font/DancingScript-Regular.ttf");
  
// Set the text to be added
$draw->annotation(10, 100, "A Computer Science Portal For Geeks!");
   
// Set the Font Style
$draw->setFont("./font/NanumGothic-Regular.ttf");
  
// Set the text to be added
$draw->annotation(50, 150, "@sarthak_ishu11");
  
// Create new Imagick object  
$imagick = new Imagick();
  
// Set the image dimension
$imagick->newImage(560, 200, '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:
setFont

Programa 2:

<?php 
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
      
// Set the Font Size
$draw->setFontSize(40);
  
// Set the image filled color
$draw->setFillColor('green');
  
// Draw the rectangle
$draw->rectangle(30, 100, 300, 300);
  
// Set the image filled color
$draw->setFillColor('black');
  
// Set the font style
$draw->setFont("./font/IndieFlower.ttf");
  
// Set the text to be added
$draw->annotation(35, 280, "GeeksForGeeks");
   
// Create new Imagick object
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(330, 330, '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:
setFont

Referencia: http://php.net/manual/en/imagickdraw.setfont.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 *