当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagefontheight()用法及代码示例


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

用法:

int imagefontheight( int $font )

参数:该函数接受单个参数$font,该参数保存字体值。对于内置字体,其值可以为1、2、3、4、5。对于自定义字体,其值可以与imageloadfont()一起使用。


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

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

程序1:

<?php 
  
// Get the font height 
echo 'Font height for font value 1 is '
        . imagefontheight(0) . '<br>'; 
  
echo 'Font height for font value 2 is '
        . imagefontheight(2) . '<br>'; 
  
echo 'Font height for font value 3 is '
        . imagefontheight(3) . '<br>'; 
  
echo 'Font height for font value 4 is '
        . imagefontheight(4) . '<br>'; 
  
echo 'Font height for font value 5 is '
        . imagefontheight(5) . '<br>'; 
?>

输出:

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

程序2:

<?php 
  
// Get the font from local folder 
$font = imageloadfont('Pacifico.ttf'); 
  
// Show the output 
echo 'Font height for Pacifico is '
         . imagefontheight($font); 
?>

输出:

Font height for Pacifico is 8

参考: https://www.php.net/manual/en/function.imagefontheight.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imagefontheight() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。