当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick queryFonts()用法及代码示例


Imagick::Imagick::queryFonts函数是PHP中的内置函数,用于返回Imagick库的已配置字体。

用法:

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

参数:该函数接受单个参数$pattern,该参数存储查询模式的值。


返回值:此函数返回包含所有已配置字体的数组。

以下示例程序旨在说明PHP中的Imagick::queryFonts()函数:

程序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;  
?>

输出:

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

程序2:

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

输出:

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

参考: http://php.net/manual/en/imagick.queryfonts.php



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | Imagick queryFonts() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。