কম্পিউটার

PHP-তে imagechar() ফাংশন


imagechar() ফাংশন অনুভূমিকভাবে একটি অক্ষর আঁকে।

সিনট্যাক্স

bool imagechar( img, font, x, y, ch, color )

প্যারামিটার

  • img :imagecreatettruecolor().

    দিয়ে একটি ছবি তৈরি করা
  • ফন্ট :ফন্ট সাইজ সেট করুন

  • x :x-সমন্বয়

  • y :y-সমন্বয়

  • c :যে চরিত্রটি আঁকতে হবে।

  • রঙ :imagecolorallocate().

    দিয়ে তৈরি একটি রঙ শনাক্তকারী

ফেরত

imagechar() ফাংশন সফল হলে TRUE বা ব্যর্থ হলে FALSE প্রদান করে।

উদাহরণ

নিম্নলিখিত একটি উদাহরণ:

<?php
   $img = imagecreate(400, 300);
   $str = 'Demo';
   $bgcolor = imagecolorallocate($img, 30, 80, 70);
   $textcolor = imagecolorallocate($img, 255, 255, 255);
   imagechar($img, 80, 100, 90, $str, $textcolor);
   header('Content-type: image/png');
   imagepng($img);
?>

আউটপুট

নিম্নলিখিত আউটপুট:

PHP-তে imagechar() ফাংশন

উদাহরণ

আসুন আমরা আরেকটি উদাহরণ দেখি যেখানে আমরা উপরের উদাহরণে দেখানো হিসাবে বিভিন্ন স্থানাঙ্ক এবং উচ্চতা/প্রস্থ সহ একটি অক্ষর আঁকছি:

<?php
   $img = imagecreate(350, 270);
   $str = 'Example';
   $bgcolor = imagecolorallocate($img, 70, 100, 130);
   $textcolor = imagecolorallocate($img, 200, 195, 210);
   imagechar($img, 100, 50, 70, $str, $textcolor);
   header('Content-type: image/png');
   imagepng($img);
?>

আউটপুট

নিম্নলিখিত আউটপুট:

PHP-তে imagechar() ফাংশন


  1. PHP-তে imagecreate() ফাংশন

  2. PHP-তে imagefill() ফাংশন

  3. PHP-তে imagefilledrectangle() ফাংশন

  4. PHP-তে imagefilledellipse() ফাংশন