La función GmagickDraw::setfontstyle() es una función incorporada en PHP que se usa para establecer el estilo de fuente que se usará al anotar con texto. La enumeración de estilo actúa como una opción de comodín que no importa.
Sintaxis:
public GmagickDraw::setfontstyle( $style ) : GmagickDraw
Parámetros: esta función acepta un único parámetro $estilo que se utiliza para mantener el valor del estilo de fuente como un tipo entero.
Constantes de ESTILO: A continuación se proporciona una lista de constantes de estilo:
- Gmagick::ESTILO_NORMAL (entero)
- Gmagick::STYLE_ITALIC (entero)
- Gmagick::STYLE_OBLIQUE (entero)
- Gmagick::STYLE_ANY (entero)
Valor de retorno: esta función devuelve el objeto GmagickDraw en caso de éxito.
Los siguientes programas ilustran la función GmagickDraw::setfontstyle() en PHP:
Programa 1:
<?php // Create an GmagickDraw object $draw = new GmagickDraw(); // Set the image filled color $draw->setFillColor('red'); // Set the Font Size $draw->setFontSize(40); // Set the Font Style $draw->setfontstyle(\Gmagick::STYLE_OBLIQUE); // Set the text to be added $draw->annotation(30, 170, "GeeksForGeeks"); // Set the image filled color $draw->setFillColor('green'); // Set the font size $draw->setFontSize(30); // Set the text to be added $draw->annotation(30, 250, "Oblique Style"); // Create new Gmagick object $gmagick= new Gmagick(); // Set the image dimension $gmagick->newImage(350, 300, 'white'); // Set the image format $gmagick->setImageFormat("png"); // Draw the image $gmagick->drawImage($draw); header("Content-Type: image/png"); // Display the image echo $gmagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create an GmagickDraw object $draw = new GmagickDraw(); // Set the image filled color $draw->setFillColor('black'); // Set the font size $draw->setFontSize(30); // Set Font Style $draw->setfontstyle(\Gmagick::STYLE_ITALIC); // Set the text to be added $draw->annotation(30, 170, "GeeksForGeeks"); // Set the image filled color $draw->setFillColor('blue'); // Set the font size $draw->setFontSize(25); // Set the text to be added $draw->annotation(30, 250, "Italic Style"); // Create new Gmagick object $gmagick= new Gmagick(); // Set the image dimension $gmagick->newImage(350, 300, 'white'); // Set the image format $gmagick->setImageFormat("png"); // Draw the image $gmagick->drawImage($draw); header("Content-Type: image/png"); // Display the image echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/gmagickdraw.setfontstyle.php