update : 2015.11.03
php.shukuma.com

검색:
 
 
Get font height

imagefontheight

(PHP 4, PHP 5, PHP 7)

imagefontheightGet font height

설명

int imagefontheight ( int $font )

Returns the pixel height of a character in the specified font.

인수

font

latin2 인코딩의 내장 글꼴 1, 2, 3, 4, 5(큰 숫자가 큰 글꼴)나 imageloadfont()로 등록한 글꼴 식별자를 사용할 수 있습니다.

반환값

Returns the pixel height of the font.

예제

Example #1 Using imagefontheight() on built-in fonts

<?php
echo 'Font height: ' imagefontheight(4);
?>

위 예제의 출력 예시:

Font height: 16

Example #2 Using imagefontheight() together with imageloadfont()

<?php
// Load a .gdf font
$font imageloadfont('anonymous.gdf');

echo 
'Font height: ' imagefontheight($font);
?>

위 예제의 출력 예시:

Font height: 43

참고