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