Open In App

PHP | ImagickDraw setFont() Function

Last Updated : 30 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The ImagickDraw::setFont() function is an inbuilt function in PHP which is used to set the fully-specified font to use when annotating with text.

Syntax:

bool ImagickDraw::setFont( $font_name )

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

Return Value: This function returns True on success.

Below programs illustrates the ImagickDraw::setFont() function in PHP:

Program 1:




<?php 
  
// Create an ImagickDraw object. 
$draw = new ImagickDraw();
  
// Set the fill color
$draw->setFillColor('green');
      
// Set the Font Size
$draw->setFontSize(40);
   
// Set the Font Style
$draw->setFont("./font/IndieFlower.ttf");
  
// Set the text to be added
$draw->annotation(50, 50, "GeeksForGeeks");
   
// Set the Font Style
$draw->setFont("./font/DancingScript-Regular.ttf");
  
// Set the text to be added
$draw->annotation(10, 100, "A Computer Science Portal For Geeks!");
   
// Set the Font Style
$draw->setFont("./font/NanumGothic-Regular.ttf");
  
// Set the text to be added
$draw->annotation(50, 150, "@sarthak_ishu11");
  
// Create new Imagick object  
$imagick = new Imagick();
  
// Set the image dimension
$imagick->newImage(560, 200, '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:
setFont

Program 2:




<?php 
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
      
// Set the Font Size
$draw->setFontSize(40);
  
// Set the image filled color
$draw->setFillColor('green');
  
// Draw the rectangle
$draw->rectangle(30, 100, 300, 300);
  
// Set the image filled color
$draw->setFillColor('black');
  
// Set the font style
$draw->setFont("./font/IndieFlower.ttf");
  
// Set the text to be added
$draw->annotation(35, 280, "GeeksForGeeks");
   
// Create new Imagick object
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(330, 330, '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:
setFont

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



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads