Gmagick::queryfontmetrics()函数是PHP中的一个内置函数,该函数返回一个数组,该数组表示字体规格,其中包含characterWidth,characterHeight,ascender,descender,textWidth,textHeight和maximumHorizontalAdvance。
用法:
Gmagick Gmagick::queryfontmetrics( GmagickDraw $draw, string $text )
参数:该函数接受上述和以下描述的两个参数:
- $draw:它指定GmagickDraw对象。
- $text:它指定文本。
返回值:此函数返回包含成功指标的数组。
异常:此函数在错误时引发GmagickException。
下面给出的程序说明了PHP中的Gmagick::queryfontmetrics()函数:
使用的图片:
程序1(请参阅默认字体指标):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Get the metrics
$fontMetrics = $gmagick->queryfontmetrics($draw, 'Hello');
print("<pre>" . print_r($fontMetrics, true) . "</pre>");
?>
输出:
Array ( [characterWidth] => 12 [characterHeight] => 12 [ascender] => 12 [descender] => -4 [textWidth] => 29 [textHeight] => 15 [maximumHorizontalAdvance] => 13 )
程序2(请参阅本地字体文件指标):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Use a local font file
$draw->setfont('Pacifico.ttf');
// Get the metrics
$fontMetrics = $gmagick->queryfontmetrics($draw, 'Hello');
print("<pre>" . print_r($fontMetrics, true) . "</pre>");
?>
输出:
Array ( [characterWidth] => 12 [characterHeight] => 12 [ascender] => 17 [descender] => -6 [textWidth] => 28 [textHeight] => 22 [maximumHorizontalAdvance] => 19 )
参考: https://www.php.net/manual/en/gmagick.queryfontmetrics.php
相关用法
- PHP Imagick queryFontMetrics()用法及代码示例
- PHP Gmagick getpackagename()用法及代码示例
- PHP Gmagick getquantumdepth()用法及代码示例
- PHP Gmagick getimagesignature()用法及代码示例
- PHP Gmagick setimagerenderingintent()用法及代码示例
- PHP Gmagick getimagescene()用法及代码示例
- PHP Gmagick setfilename()用法及代码示例
- PHP Gmagick separateimagechannel()用法及代码示例
- PHP Gmagick drawimage()用法及代码示例
- PHP Gmagick annotateImage()用法及代码示例
- PHP Gmagick getreleasedate()用法及代码示例
- PHP Gmagick setimagebordercolor()用法及代码示例
- PHP Gmagick getcopyright()用法及代码示例
- PHP Gmagick getimageresolution()用法及代码示例
- PHP Gmagick setimageresolution()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick queryfontmetrics() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。