(PHP 4, PHP 5, PHP 7, PHP 8)
imagefontwidth — 获取字体宽度
返回字体的像素宽度。
示例 #1 在内置字体上使用 imagefontwidth()
<?php
echo 'Font width: ' . imagefontwidth(4);
?>
以上示例的输出类似于:
Font width: 8
示例 #2 将 imagefontwidth() 与 imageloadfont() 一起使用
<?php
// Load a .gdf font
$font = imageloadfont('anonymous.gdf');
echo 'Font width: ' . imagefontwidth($font);
?>
以上示例的输出类似于:
Font width: 23