Open In App

PHP | Imagick queryFonts() Function

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

The Imagick::Imagick::queryFonts function is an inbuilt function in PHP which is used to returns the configured fonts of Imagick library.

Syntax:

array Imagick::queryFonts( $pattern = "*" )

Parameters: This function accepts single parameter $pattern which stores the value of the query pattern.

Return Value: This function returns an array containing all configured fonts.

Below programs illustrate the Imagick::queryFonts() function in PHP:

Program 1:




<?php 
  
$output = '';
$output .= "Fonts that match 'Times*' are:<br>";
  
// Imagick Object
$fontList = Imagick::queryFonts( "Times*" );
   
foreach ($fontList as $fontName) {
    $output .= $fontName;
}
  
// Output
echo $output
?>


Output:

Fonts that match 'Times*' are:
Times-Bold
Times-BoldItalic
Times-Italic
Times-Roman

Program 2:




<?php
  
// Create new Imagick object
$im = new Imagick(); 
  
// Display all fonts
var_dump( $im->queryFonts() ); 
?>


Output:

string(5) "array"
array(326) {
  [0] => string(5) "aakar"
  [1] => string(14) "Abyssinica-SIL"
  ...
  ...
  ...
  [325] => string(13) "Waree-Oblique"
}

Reference: http://php.net/manual/en/imagick.queryfonts.php


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads