La función GmagickDraw::gettextdecoration() es una función incorporada en PHP que se usa para aplicar la decoración al anotar con texto.
Sintaxis:
int GmagickDraw::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:
- Gmagick::DECORACIÓN_NO (0)
- Gmagick::DECORACIÓN_UNDERLINE (1)
- Gmagick::DECORATION_OVERLINE (2)
- Gmagick::DECORACIÓN_LINEA A TRAVÉS (3)
Excepciones: esta función lanza GmagickDrawException en caso de error.
Los siguientes programas ilustran la función GmagickDraw::gettextdecoration() en PHP:
Programa 1:
<?php // Create a new GmagickDraw object $draw = new GmagickDraw(); // Get the text decoration $textDecoration = $draw->gettextdecoration(); echo $textDecoration; ?>
Producción:
0 // Which is the default value
Programa 2:
<?php // Create a new GmagickDraw object $draw = new GmagickDraw(); // Set the text decoration $draw->settextdecoration(3); // Get the text decoration $textDecoration = $draw->gettextdecoration(); echo $textDecoration; ?>
Producción:
3
Imagen usada:
Programa 3:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Create a GmagickDraw object $draw = new GmagickDraw(); // Set the color $draw->setFillColor('#0E0E0E'); // Draw rectangle for background $draw->rectangle(-10, -10, 800, 400); // Set the font size $draw->setfontsize(30); // Set the fill color $draw->setFillColor('white'); // Set the text decoration to overline $draw->settextdecoration(2); // Get the text decoration $textDecoration = $draw->gettextdecoration(); // Annotate a text $draw->annotate(50, 100, 'The text decoration here is ' . $textDecoration); // Use of drawimage functeannotate $gmagick->drawImage($draw); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/gmagickdraw.gettextdecoration.php