Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

วิธีรับความสูงพิกเซลของอักขระในแบบอักษรที่ระบุโดยใช้ฟังก์ชัน imagefontheight () ใน PHP


imagefontheight() เป็นฟังก์ชัน inbuilt ใน PHP ที่ใช้เพื่อรับความสูงของพิกเซลของอักขระในแบบอักษรที่ระบุ

ไวยากรณ์

int imagefontheight(int $font)

พารามิเตอร์

imagefontheight() รับหนึ่งพารามิเตอร์ $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