php width,PHP imagefontwidth()用法及代码示例
imagefontwidth()函數是PHP中的內置函數,用于獲取指定字體中字符的像素寬度。
用法:
int imagefontwidth( int $font )
參數:該函數接受一個包含字體的單個參數$font。對于內置字體,它可以是1、2、3、4、5。對于自定義字體,它可以與imageloadfont()一起使用。
返回值:此函數返回一個包含字體寬度的整數值。
以下示例程序旨在說明PHP中的imagefontwidth()函數:
程序1:
// Get the font width
echo 'Font width for font value 1 is '
. imagefontwidth(1) . '
';
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
程序2:
// Get the font from local folder
$font = imageloadfont('Pacifico.ttf');
// Show the output
echo 'Font width for Pacifico is '
. imagefontwidth($font);
?>
輸出:
Font width for Pacifico is 5
總結
以上是生活随笔為你收集整理的php width,PHP imagefontwidth()用法及代码示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: excel有的单元文字可以超出单元格_e
- 下一篇: php jquery validate