Thursday, October 9, 2025
HomeLanguagesPHP | ImagickDraw getTextAlignment() Function

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:

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

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

RELATED ARTICLES

Most Popular

Dominic
32346 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11877 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11940 POSTS0 COMMENTS
Shaida Kate Naidoo
6835 POSTS0 COMMENTS
Ted Musemwa
7094 POSTS0 COMMENTS
Thapelo Manthata
6789 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS