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

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


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

ไวยากรณ์

int imagefontwidth(int $font)

พารามิเตอร์

imagefontwidth() ใช้พารามิเตอร์เพียงตัวเดียว $font มันเก็บค่าตัวอักษร $font ค่าสามารถเป็น 1, 2, 3, 4 และ 5 สำหรับแบบอักษรในตัวหรือสามารถใช้ได้โดยใช้ imageloadfont() ฟังก์ชันสำหรับแบบอักษรที่กำหนดเอง

คืนค่า

imagefontwidth() คืนค่าความกว้างพิกเซลของแบบอักษร

ตัวอย่างที่ 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