PHP | Función ImagickDraw setTextDecoration()

La función ImagickDraw::setTextDecoration() es una función incorporada en PHP que se usa para especificar la decoración que se aplicará al anotar con texto.

Sintaxis:

bool ImagickDraw::setTextDecoration( $decoration )

Parámetros: esta función acepta un único parámetro $decoración que se utiliza para mantener constante el valor de DECORACIÓN_.
La lista de constantes DECORATION_ se proporciona a continuación:

  • imagick::DECORACIÓN_NO (entero)
  • imagick::DECORACIÓN_UNDERLINE (entero)
  • imagick::DECORATION_OVERLINE (entero)
  • imagick::DECORATION_LINETROUGH (entero)

Valor devuelto: esta función no devuelve ningún valor.

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

Programa 1:

<?php
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
  
// Set the image filled color 
$draw->setFillColor('green');
  
// Set the font size
$draw->setFontSize(60);
  
// Set the Text Decoration
$draw->setTextDecoration(4);
  
// Set the text to be added
$draw->annotation(50, 75, "GeeksForGeeks");
   
// Create new Imagick Object
$imagick = new Imagick();
  
// Set image dimensions
$imagick->newImage(500, 160, '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:
setTextDecoration

Programa 2:

<?php
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
  
// Set the image filled color 
$draw->setFillColor('yellow');
  
// Set the font size
$draw->setFontSize(20);
  
// Set the TextDecoration() function
// Text is Upperline
$draw->setTextDecoration(3);
// Set the text to be added
$draw->annotation(50, 75, "A Computer Science Portal For Geeks!");
  
// Create new Imagick Object 
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(500, 160, 'black');
  
// 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:
setTextDecoration

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