이미지 글꼴 높이() 지정된 글꼴에서 문자의 픽셀 높이를 가져오는 데 사용되는 PHP의 내장 함수입니다.
구문
int imagefontheight(int $font)
매개변수
이미지 글꼴 높이() 하나의 매개변수, $font 사용 . 글꼴 값을 유지합니다. $font 값은 내장 글꼴의 경우 1, 2, 3, 4 및 5일 수 있으며 imageloadfont()를 사용하여 사용할 수 있습니다. 사용자 정의 글꼴을 위한 기능입니다.
반환 값
imagefontheight()는 글꼴의 픽셀 높이를 반환합니다.
예시 1
<?php // font height values can be change from 1 to 5. echo 'Font height: ' . imagefontheight(3); ?>
출력
Font height: 13
예시 2
<?php // Get the font height from 1 to 5 echo 'Font height for the font value 1 is' .imagefontheight(1) .'<br>'; //<br> is used for the line break echo 'Font height for the font value 2 is' .imagefontheight(2) . '<br>'; echo 'Font height for the font value 3 is' .imagefontheight(3) . '<br>'; echo 'Font height for the font value 4 is' .imagefontheight(4) .'<br>'; echo 'Font height for the font value 5 is ' .imagefontheight(5) .'<br>'; ?>
출력
Font height for the font value 1 is 8 Font height for the font value 2 is 13 Font height for the font value 3 is 13 Font height for the font value 4 is 16 Font height for the font value 5 is 15