PHP | Función ImagickDraw getTextAlignment()

La función ImagickDraw::getTextAlignment() es una función incorporada en PHP que se usa para aplicar la alineación al anotar con texto. Ayuda a formatear el texto haciendo que se pegue a la izquierda, a la derecha o al medio.

Sintaxis:

int ImagickDraw::getTextAlignment( void )

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

Valor de retorno: esta función devuelve un valor entero correspondiente a una de las constantes ALIGN.

La lista de constantes ALIGN se proporciona a continuación:

  • imagick::ALIGN_UNDEFINED (0)
  • imagick::ALIGN_LEFT (1)
  • imagick::ALIGN_CENTER (2)
  • imagick::ALIGN_RIGHT (3)

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

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

Programa 1:

<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
     
// Get the text alignment
$textAlignment = $draw->getTextAlignment();
echo $textAlignment;
?>

Producción:

0 // which corresponds to imagick::ALIGN_UNDEFINED

Programa 2:

<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Create a new imagick object
$imagick = new Imagick();
  
// Create a image on imagick object
$imagick->newImage(800, 250, 'white');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Align the text
$draw->setTextAlignment(2);
  
// Set the font size
$draw->setFontSize(25);
  
// Print the text
$draw->annotation(250, 100, 'The text alignment here is ' 
                              . $draw->getTextAlignment());
  
// Align the text
$draw->setTextAlignment(1);
  
// Print the text with same x-coordinate
$draw->annotation(250, 180, 'The text alignment here is ' 
                              . $draw->getTextAlignment());
  
// 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.gettextalignment.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 *