La función ImagickDraw::setTextAlignment() es una función incorporada en PHP que se usa para especificar una alineación de texto que puede ser izquierda, centro o derecha.
Sintaxis:
bool ImagickDraw::setTextAlignment( $alignment )
Parámetros: esta función acepta un único parámetro $alineación que se utiliza para mantener el valor de las constantes ALIGN_.
La lista de constantes ALIGN_ se proporciona a continuación:
- Imagick::ALIGN_UNDEFINED (entero)
- Imagick::ALIGN_LEFT (entero)
- Imagick::ALIGN_CENTER (entero)
- Imagick::ALIGN_RIGHT (entero)
Valor devuelto: esta función no devuelve ningún valor.
El siguiente programa ilustra la función ImagickDraw::setTextAlignment() en PHP:
Programa:
<?php // Create an ImagickDraw object $draw = new ImagickDraw(); // Set the image filled color $draw->setFillColor('white'); // Set the Font size $draw->setFontSize(40); // Set the text Alignment $draw->setTextAlignment(0); // Set the text to be added $draw->annotation(110, 75, "GeeksforGeeks!"); // Set the text alignment $draw->setTextAlignment(1); // Set the Font size $draw->setFontSize(20); // Set the text to be added $draw->annotation(100, 110, "A computer science portal for geeks"); // Create new imagick object $imagick = new Imagick(); // Set the image dimension $imagick->newImage(500, 300, 'green'); // 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:
Referencia: http://php.net/manual/en/imagickdraw.settextalignment.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