Open In App

PHP | ImagickDraw getTextAlignment() Function

The ImagickDraw::getTextAlignment() function is an inbuilt function in PHP which is used to get the alignment applied when annotating with text. It helps to format the text by making it stick to left, right or middle.

Syntax:



int ImagickDraw::getTextAlignment( void )

Parameters: This function doesn’t accept any parameter.

Return Value: This function returns an integer value corresponding to one of ALIGN constants.



List of ALIGN constants are given below:

Exceptions: This function throws ImagickException on error.

Below given programs illustrate the ImagickDraw::getTextAlignment() function in PHP:

Program 1:




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

Output:

0 // which corresponds to imagick::ALIGN_UNDEFINED

Program 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();
?>

Output:

Reference: https://www.php.net/manual/en/imagickdraw.gettextalignment.php


Article Tags :