Open In App

PHP | ImagickDraw setFontFamily() Function

The ImagickDraw::setFontFamily() function is an inbuilt function in PHP which is used to set the font family to use when annotating with text.

Syntax: 



bool ImagickDraw::setFontFamily( $font_family )

Parameters:This function accepts a single parameter $font_family which is used to hold the value of font family as string.

Return Value: This function returns True on success.



Below programs illustrate the ImagickDraw::setFontFamily() function in PHP:

Program 1:  




<?php
 
// Create an ImagickDraw object
$draw = new ImagickDraw();
 
// Set the image filled color
$draw->setFillColor('red');
 
// Set the Font size
$draw->setFontSize(40);
 
// Set the Font Family
$draw->setFontFamily('Ubuntu-Mono');
 
// Set the text to be added
$draw->annotation(30, 170, "GeeksForGeeks");
 
// Set the image filled color
$draw->setFillColor('green');
 
// Set the font size
$draw->setFontSize(30);
 
// Set the Font Family
$draw->setFontFamily('Open-Sans-Light-Italic');
 
// Set the text to be added
$draw->annotation(30, 250, "Ubuntu-Mono");
 
// Create new imagick object   
$imagick = new Imagick();
 
// Set the image dimension
$imagick->newImage(350, 300, 'white');
 
// Set the image formats
$imagick->setImageFormat("png");
 
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
 
// Display the image
echo $imagick->getImageBlob();
?>

Output: 
 

Program 2: 




<?php
 
// Create an ImagickDraw object
$draw = new ImagickDraw();
 
// set the image filled color
$draw->setFillColor('Green');
 
// Set the font size
$draw->setFontSize(30);
 
// Set the Font Style
$draw->setFontFamily('Ani');
 
// Set the text to be added
$draw->annotation(30, 40, "GeeksForGeeks");
 
// Create new imagick object   
$imagick = new Imagick();
 
// Set the image dimension
$imagick->newImage(250, 70, 'white');
 
// Set the image format
$imagick->setImageFormat("png");
 
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
 
// Display the image
echo $imagick->getImageBlob();
?>

Output: 
 

Reference: http://php.net/manual/en/imagickdraw.setfontfamily.php
 


Article Tags :