PHP | ImagickDraw getFontStyle() Function Last Updated : 07 Mar, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report The ImagickDraw::getFontStyle() function is an inbuilt function in PHP which is used to get the font style used when annotating with text. Syntax: int ImagickDraw::getFontStyle( void ) Parameters: This function doesn’t accepts any parameters. Return Value: This function returns an integer value corresponding to one of STYLE constants or 0 when no style is set. List of STYLE constants are given below: imagick::STYLE_NORMAL (1) imagick::STYLE_ITALIC (2) imagick::STYLE_OBLIQUE (3) imagick::STYLE_ANY (4) Below programs illustrate the ImagickDraw::getFontStyle() function in PHP: Program 1: php <?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the font Style $fontStyle = $draw->getFontStyle(); echo $fontStyle; ?> Output: 0 // Which is default value. Program 2: php <?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; ?> Output: 3 Program 3: php <?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(); ?> Output: Comment More infoAdvertise with us Next Article PHP | ImagickDraw getFont() Function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick Similar Reads PHP | GmagickDraw getfontstyle() Function The GmagickDraw::getfontstyle() function is an inbuilt function in PHP which is used to get the font style used when annotating with text. Syntax: int GmagickDraw::getfontstyle( void ) Parameters: This function doesnât accept any parameters. Return Value: This function returns an integer value corre 2 min read PHP | ImagickDraw getFont() Function The ImagickDraw::getFont() function is an inbuilt function in PHP which is used to get the string specifying the font used when annotating with text. Syntax: string ImagickDraw::getFont( void ) Parameters: This function doesnât accepts any parameters. Return Value: This function returns an string va 2 min read PHP | ImagickDraw getFontSize() Function The ImagickDraw::getFontSize() function is an inbuilt function in PHP which is used to get the font pointsize used when annotating with text. Syntax: float ImagickDraw::getFontSize( void ) Parameters: This function doesnât accept any parameter. Return Value: This function returns a float value conta 1 min read PHP | GmagickDraw getfont() Function The GmagickDraw::getfont() function is an inbuilt function in PHP which is used to get the string specifying the font used when annotating with text. Syntax: string GmagickDraw::getfont( void ) Parameters: This function doesnât accept any parameters. Return Value: This function returns an string val 2 min read PHP | GmagickDraw getfontsize() Function The Gmagick::getfontsize() function is an inbuilt function in PHP which is used to return the font pointsize. Syntax: public GmagickDraw::getfontsize( void )  Parameters: This function does not accept any parameter. Return Value: This function returns the font pointsize associated with the current 2 min read PHP | GmagickDraw getfontsize() Function The Gmagick::getfontsize() function is an inbuilt function in PHP which is used to return the font pointsize. Syntax: public GmagickDraw::getfontsize( void )  Parameters: This function does not accept any parameter. Return Value: This function returns the font pointsize associated with the current 2 min read Like