Open In App

PHP | GmagickDraw getfontweight() Function

Last Updated : 23 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
The GmagickDraw::getfontweight() function is an inbuilt function in PHP which is used to get the font-weight used when annotating with text. Font weight actually signifies the boldness of the font, more the font-weight the more the bold text will be. It can be anything from 100 to 900. Syntax:
int GmagickDraw::getfontweight( void )
Parameters: This function doesn’t accept any parameters. Return Value: This function returns an integer value containing the font weight. Exceptions: This function throws GmagickDrawException on error. Below given programs illustrate the GmagickDraw::getfontweight() function in PHP: Program 1: php
<?php

// Create a new GmagickDraw object 
$draw = new GmagickDraw(); 
  
// Get the font Weight 
$fontWeight = $draw->getfontweight(); 
echo $fontWeight; 
?> 
Output:
0 // Which is the default value
Program 2: php
<?php 

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

// Set the font weight
$draw->setfontweight(200);
  
// Get the font Weight 
$fontWeight = $draw->getfontweight(); 
echo $fontWeight; 
?> 
Output:
200
Used Image: Program 3: 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 weight
$draw->setFontWeight(900);

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

// 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.getfontweight.php

Similar Reads