इमेजफॉन्टविड्थ () 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