Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> PHP

PHP में imagefontheight () फ़ंक्शन का उपयोग करके निर्दिष्ट फ़ॉन्ट में किसी वर्ण की पिक्सेल ऊंचाई कैसे प्राप्त करें?

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

  1. Imageopenpolygon () फ़ंक्शन n PHP का उपयोग करके एक खुले बहुभुज को कैसे आकर्षित करें?

    imageopenpolygon() PHP में एक इनबिल्ट फंक्शन है जिसका उपयोग किसी दिए गए इमेज पर एक ओपन पॉलीगॉन बनाने के लिए किया जाता है। सिंटैक्स bool imageopenpolygon(resource $image,array $points,int $num_points,int $color) पैरामीटर imageopenpolygon() चार अलग-अलग पैरामीटर लेता है:$image, $points, $num_points an

  1. PHP में imageistruecolor () फ़ंक्शन का उपयोग करके यह सुनिश्चित करने के लिए कि छवि एक सच्चे रंग की छवि कैसे है?

    imageistruecolor() PHP में एक इनबिल्ट फ़ंक्शन है जिसका उपयोग यह जांचने के लिए किया जाता है कि दी गई छवि एक सच्चे रंग की छवि है या नहीं। एक सच्चे रंग की छवि में, प्रत्येक पिक्सेल को RGB (लाल, हरा और नीला) रंग मानों द्वारा निर्दिष्ट किया जाता है। सिंटैक्स bool imageistruecolor(resource $image) पैरामीट

  1. PHP का उपयोग करके इमेजक्रॉप () फ़ंक्शन का उपयोग करके दिए गए आयत में एक छवि कैसे क्रॉप करें?

    इमेजक्रॉप () PHP में एक इनबिल्ट फंक्शन है जिसका उपयोग किसी इमेज को दिए गए आयत में क्रॉप करने के लिए किया जाता है। यह दिए गए आयत क्षेत्र से छवि को क्रॉप करता है और आउटपुट छवि देता है। दी गई छवि संशोधित नहीं है। सिंटैक्स resource imagecrop ($image, $rect) पैरामीटर इमेजक्रॉप () दो पैरामीटर लेता है, $i