Open In App

PHP | GmagickDraw getfontstyle() Function

Last Updated : 21 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
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 corresponding to one of the STYLE constants. The list of STYLE constants are given below:
  • Gmagick::STYLE_NORMAL (Integer)
  • Gmagick::STYLE_ITALIC (Integer)
  • Gmagick::STYLE_OBLIQUE (Integer)
  • Gmagick::STYLE_ANY (Integer)
Exceptions: This function throws GmagickDrawException on error. Below given programs illustrate the GmagickDraw::getfontstyle() function in PHP: Used Image: Program 1: php
<?php

// Create a new GmagickDraw object 
$draw = new GmagickDraw(); 

// Get the font Style 
$fontStyle = $draw->getfontstyle(); 
echo $fontStyle; 
?> 
Output:
0 // Which is the default value.
Program 3: php
<?php

// Create a new GmagickDraw object 
$draw = new GmagickDraw(); 

// Set the font style
$draw->setfontstyle(2);
  
// Get the font Style 
$fontStyle = $draw->getfontstyle(); 
echo $fontStyle; 
?> 
Output:
2
Program 2: php
<?php

// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');

// Create a GmagickDraw object
$draw = new GmagickDraw();

// Set the color
$draw->setFillColor('#0E0E0E');
 
// Set the font size
$draw->setfontsize(40);

// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);

// Set the fill color
$draw->setFillColor('white');

// Set the font style to Italic
$draw->setFontStyle(Gmagick::STYLE_ITALIC);

// Annotate a text
$draw->annotate(50, 100, 'The Font style here is '
    . $draw->getFontStyle() . '.');

// Use of drawimage functeannotate
$gmagick->drawImage($draw);

// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
Output: Reference: https://www.php.net/manual/en/gmagickdraw.getfontstyle.php

Next Article

Similar Reads