imagefontheight() 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