ছবির ফন্ট উচ্চতা() পিএইচপি-তে একটি অন্তর্নির্মিত ফাংশন যা নির্দিষ্ট ফন্টে একটি অক্ষরের পিক্সেল উচ্চতা পেতে ব্যবহৃত হয়।
সিনট্যাক্স
int imagefontheight(int $font)
পরামিতি
ছবির ফন্ট উচ্চতা() একটি প্যারামিটার নেয়, $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