📜  PHP | imagefontwidth()函数

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

PHP | imagefontwidth()函数

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

句法:

int imagefontwidth( int $font )

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

返回值:此函数返回一个包含字体宽度的整数值。

下面的程序说明了PHP中的imagefontwidth()函数

方案一:

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

输出:

Font width for font value 1 is 5
Font width for font value 2 is 6
Font width for font value 3 is 7
Font width for font value 4 is 8
Font width for font value 5 is 9

方案二:


输出:

Font width for Pacifico is 5

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