📜  PHP |想象一下 queryFonts()函数

📅  最后修改于: 2022-05-13 01:56:23.432000             🧑  作者: Mango

PHP |想象一下 queryFonts()函数

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

句法:

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

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

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

下面的程序说明了PHP中的Imagick::queryFonts()函数:

方案一:

";
  
// 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

方案二:

queryFonts() ); 
?>

输出:

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

参考: http: PHP。 PHP