imagefontheight
imagefontheight
(PHP 4, PHP 5, PHP 7)
imagefontheight - 获取字体高度
描述
int imagefontheight ( int $font )
返回指定字体中字符的像素高度。
参数
`font`
对于latin2编码(其中较大的数字对应较大的字体)或使用imageloadfont()注册的任何自己的字体标识符,可以为1,2,3,4,5。
返回值
返回字体的像素高度。
例子
Example #1 Using imagefontheight() on built-in fonts
<?php
echo 'Font height: ' . imagefontheight(4
?>
上面的例子会输出类似于:
Font height: 16
Example #2 Using imagefontheight() together with
imageloadfont()
<?php
// Load a .gdf font
$font = imageloadfont('anonymous.gdf'
echo 'Font height: ' . imagefontheight($font
?>
上面的例子会输出类似于:
Font height: 43
← imageflip
imagefontwidth →