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