Tuesday, September 24, 2024
Google search engine
HomeLanguagesPHP | ImagickDraw getFontFamily() Function

PHP | ImagickDraw getFontFamily() Function

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments