La función ImagickDraw::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 AnyStyle actúa como una opción de comodín «no me importa».
Sintaxis:
bool ImagickDraw::setFontStyle( $style )
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:
- imagick::ESTILO_NORMAL (entero)
- imagick::STYLE_ITALIC (entero)
- imagick::STYLE_OBLIQUE (entero)
- imagick::STYLE_ANY (entero)
Valor devuelto: esta función no devuelve ningún valor.
Los siguientes programas ilustran la función ImagickDraw::setFontStyle() en PHP:
Programa 1:
<?php // Create an ImagickDraw object $draw = new ImagickDraw(); // Set the image filled color $draw->setFillColor('red'); // Set the Font Size $draw->setFontSize(40); // Set the Font Style $draw->setFontStyle(\Imagick::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 Imagick object $imagick = new Imagick(); // Set the image dimension $imagick->newImage(350, 300, 'white'); // 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:
Programa 2:
<?php // Create an ImagickDraw object $draw = new ImagickDraw(); // Set the image filled color $draw->setFillColor('black'); // Set the font size $draw->setFontSize(30); // Set Font Style $draw->setFontStyle(\Imagick::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 Imagick object $imagick = new Imagick(); // Set the image dimension $imagick->newImage(350, 300, 'white'); // 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.setfontstyle.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