update : 2015.11.03
php.shukuma.com

검색:
 
 
Get font width

imagefontwidth

(PHP 4, PHP 5, PHP 7)

imagefontwidthGet font width

설명

int imagefontwidth ( int $font )

Returns the pixel width of a character in font.

인수

font

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

반환값

Returns the pixel width of the font.

예제

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

<?php
echo 'Font width: ' imagefontwidth(4);
?>

위 예제의 출력 예시:

Font width: 8

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

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

echo 
'Font width: ' imagefontwidth($font);
?>

위 예제의 출력 예시:

Font width: 23

참고