La función ImagickDraw::getTextDecoration() es una función incorporada en PHP que se utiliza para aplicar la decoración al anotar con texto.
Sintaxis:
int ImagickDraw::getTextDecoration( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: Esta función devuelve un valor entero correspondiente a una de las constantes DECORACIÓN.
La lista de constantes de DECORACIÓN se da a continuación:
- imagick::DECORACIÓN_NO (0)
- imagick::DECORACIÓN_UNDERLINE (1)
- imagick::DECORACIÓN_OVERLINE (2)
- imagick::DECORACIÓN_LINEA A TRAVÉS (3)
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función ImagickDraw::getTextDecoration() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the text decoration $textDecoration = $draw->getTextDecoration(); echo $textDecoration; ?>
Producción:
1 // which is the default value.
Programa 2:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the text decoration $draw->setTextDecoration(2); // Get the text decoration $textDecoration = $draw->getTextDecoration(); echo $textDecoration; ?>
Producción:
2
Programa 3:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'grey'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the fill color $draw->setFillColor('purple'); // Set the font size $draw->setFontSize(40); // Get the text decoration $textDecoration = $draw->getTextDecoration(); // Annotate a text $draw->annotation(50, 100, 'The text decoration here is ' . $textDecoration); // Set the text decoration $draw->setTextDecoration(2); // Get the text decoration $textDecoration = $draw->getTextDecoration(); // Annotate a text $draw->annotation(50, 200, 'The text decoration here is ' . $textDecoration); // 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.gettextdecoration.php