當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。