কম্পিউটার

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


imagefilledrectangle() ফাংশন একটি পূর্ণ আয়তক্ষেত্র আঁকে।

সিনট্যাক্স

imagefilledrectangle( $img, $x1, $y1, $x2, $y2, $color )

প্যারামিটার

  • ছবি
    imagecreatetruecolor().

    দিয়ে একটি ফাঁকা ছবি তৈরি করুন
  • x1
    পয়েন্ট 1 এর জন্য x-সমন্বয়।

  • y1
    পয়েন্ট 1 এর জন্য y-সমন্বয়।

  • x2
    পয়েন্ট 2 এর জন্য x-সমন্বয়।

  • y2
    পয়েন্ট 2 এর জন্য y-সমন্বয়।

  • রঙ
    ভরাট রঙ।

ফেরত

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

উদাহরণ

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

<?php
   // Create an image
   $img = imagecreatetruecolor(500, 300);
   $color = imagecolorallocate($img, 0, 128, 128);
   imagefilledrectangle($img, 30, 30, 470, 270, $color);
   header("Content-type: image/png");
   imagepng($img);
   imagedestroy($img);
?>

আউটপুট

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

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


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

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

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

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