Open In App

PHP | ImagickDraw getFontFamily() Function

Last Updated : 23 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The ImagickDraw::getFontFamily() function is an inbuilt function in PHP which is used to get the font family to use when annotating with text. It tells the specific size and style of text to be used and there are many font-families available like Times, AvantGarde, NewCenturySchlbk, Palatino, etc.

Syntax:

string ImagickDraw::getFontFamily( void )

Parameters: This function doesn’t accept any parameter.

Return Value: This function returns an string value containing the name of the font family.

Exceptions: This function throws ImagickException on error.

Below given programs illustrate the ImagickDraw::getFontFamily() function in PHP:

Program 1:




<?php
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the font
$draw->setFontFamily("Palatino");
  
// Get the font
$font = $draw->getFontFamily();
echo $font;
?>


Output:

Palatino

Program 2:




<?php
   
// Create a new imagick object
$imagick = new Imagick();
   
// Create a image on imagick object
$imagick->newImage(800, 250, 'grey');
   
// Create a new ImagickDraw object
$draw = new ImagickDraw();
   
// Set the font size
$draw->setFontSize(50);
   
// Annotate a text
$draw->annotation(50, 100, 
          'The Font Family here is default.');
   
// Set the font family
$draw->setFontFamily("sans-sarif");
   
// Set the font size
$draw->setFontSize(50);
   
// Annotate a text
$draw->annotation(50, 200, 
                  'The Font Family here is ' 
                  . $draw->getFontFamily() . '.');
   
// Render the draw commands
$imagick->drawImage($draw);
   
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>


Output:

Reference: https://www.php.net/manual/en/imagickdraw.getfontfamily.php



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads