📜  PHP | imagefontheight()函数

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

PHP | imagefontheight()函数

imagefontheight()函数是PHP中的一个内置函数,用于获取指定字体中字符的像素高度。

句法:

int imagefontheight( int $font )

参数:此函数接受一个保存字体值的参数$font 。对于内置字体,它的值可以是 1、2、3、4、5,也可以与imageloadfont()一起用于自定义字体。

返回值:此函数返回一个包含高度的整数值。

下面给出的程序说明了PHP中的imagefontheight()函数

方案一:

';
  
echo 'Font height for font value 2 is '
        . imagefontheight(2) . '
';    echo 'Font height for font value 3 is '         . imagefontheight(3) . '
';    echo 'Font height for font value 4 is '         . imagefontheight(4) . '
';    echo 'Font height for font value 5 is '         . imagefontheight(5) . '
'; ?>

输出:

Font height for font value 1 is 8
Font height for font value 2 is 13
Font height for font value 3 is 13
Font height for font value 4 is 16
Font height for font value 5 is 15

方案二:


输出:

Font height for Pacifico is 8

参考: https://www. PHP.net/manual/en/函数.imagefontheight。 PHP