PHP | ImagickDraw setFontStyle() Function Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The ImagickDraw::setFontStyle() function is an inbuilt function in PHP which is used to set the font style to use when annotating with text. The AnyStyle enumeration acts as a wild-card "don't care" option. Syntax: bool ImagickDraw::setFontStyle( $style ) Parameters: This function accepts a single parameter $style which is used to hold the value of font style as integer type. STYLE constants: imagick::STYLE_NORMAL (integer) imagick::STYLE_ITALIC (integer) imagick::STYLE_OBLIQUE (integer) imagick::STYLE_ANY (integer) Return Value: This function does not return any value. Below programs illustrate the ImagickDraw::setFontStyle() function in PHP: Program 1: php <?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(); ?> Output: Program 2: php <?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(); ?> Output: Reference: https://www.php.net/manual/en/imagickdraw.setfontstyle.php Comment More infoAdvertise with us Next Article PHP | ImagickDraw setFont() Function S sarthak_ishu11 Follow Improve Article Tags : Technical Scripter Web Technologies PHP Image-Processing PHP-function PHP-Imagick +2 More Similar Reads PHP | GmagickDraw setfontstyle() Function The GmagickDraw::setfontstyle() function is an inbuilt function in PHP that is used to set the font style to use when annotating with text. Style enumeration acts as a wild-card don't care option. Syntax: public GmagickDraw::setfontstyle( $style ) : GmagickDraw Parameters: This function accepts a s 2 min read PHP | ImagickDraw setFont() Function The ImagickDraw::setFont() function is an inbuilt function in PHP which is used to set the fully-specified font to use when annotating with text. Syntax: bool ImagickDraw::setFont( $font_name ) Parameters: This function accepts a single parameter $font_name which is used to hold the value of font na 2 min read PHP | ImagickDraw setFontSize() Function The ImagickDraw::setFontSize() function is an inbuilt function in PHP which is used to set the font point size. It is used when annotating with text. Syntax:  bool ImagickDraw::setFontSize( $pointsize ) Parameters: This function accepts a single parameter $pointsize which is used to hold the value 2 min read PHP | GmagickDraw setfont() function The GmagickDraw::setfont() function is an inbuilt function in PHP which is used to set the fully-specified font to use when annotating with text. Syntax: GmagickDraw GmagickDraw::setfont( string $font ) Parameters:This function accepts a single parameter $font which is used to hold the value of font 1 min read PHP | GmagickDraw setfontsize() Function The Gmagick::setfontsize() function is an inbuilt function in PHP which is used to set the font size to use when annotating with text. Syntax: public GmagickDraw::setfontsize( $pointsize )  Parameters: This function accept single parameter $pointsize which is used to store font size. Return Value: 2 min read PHP | ImagickDraw setFontFamily() Function The ImagickDraw::setFontFamily() function is an inbuilt function in PHP which is used to set the font family to use when annotating with text. Syntax: bool ImagickDraw::setFontFamily( $font_family ) Parameters:This function accepts a single parameter $font_family which is used to hold the value of 2 min read Like