La función ImagickDraw::getFontStyle() es una función incorporada en PHP que se utiliza para obtener el estilo de fuente utilizado al anotar con texto.
Sintaxis:
int ImagickDraw::getFontStyle( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve un valor entero correspondiente a una de las constantes de ESTILO o 0 cuando no se establece ningún estilo.
La lista de constantes de ESTILO se proporciona a continuación:
- imagick::ESTILO_NORMAL (1)
- imagick::STYLE_ITALIC (2)
- imagick::ESTILO_OBLIQUE (3)
- imagick::ESTILO_ANY (4)
Los siguientes programas ilustran la función ImagickDraw::getFontStyle() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the font Style $fontStyle = $draw->getFontStyle(); echo $fontStyle; ?>
Producción:
0 // Which is default value.
Programa 2:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the font Style $draw->setFontStyle(imagick::STYLE_OBLIQUE); // Get the font Style $fontStyle = $draw->getFontStyle(); echo $fontStyle; ?>
Producción:
3
Programa 3:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, '#bfc7d6'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the font size $draw->setFontSize(30); // Annotate a text $draw->annotation(50, 100, 'The Font style here is default.'); // Set the font style $draw->setFontStyle(imagick::STYLE_ITALIC); // Annotate a text $draw->annotation(50, 200, 'The Font style here is ' . $draw->getFontStyle() . '.'); // 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.getfontstyle.php