কম্পিউটার

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


imagecolortransparent() ফাংশনটি একটি স্বচ্ছ ছবির রঙ সেট করতে ব্যবহৃত হয়।

সিনট্যাক্স

imagecolortransparent ( img, color )

প্যারামিটার

  • img :imagecreatetruecolor() ফাংশন দিয়ে ছবি তৈরি করুন।

  • রঙ :imagecolorallocate().

    দিয়ে রঙ শনাক্তকারী তৈরি করা হয়েছে

ফেরত

imagecolortransparent() ফাংশন নতুন স্বচ্ছ রঙের শনাক্তকারী প্রদান করে। রিটার্ন মান হল -1 যদি রঙ নির্দিষ্ট করা না থাকে এবং ছবির কোন স্বচ্ছ রঙ না থাকে।

উদাহরণ

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

<?php
   $img = imagecreatetruecolor(500, 400);
   $blue = imagecolorallocate($img, 0, 0, 255);
   $transparent = imagecolorallocate($img, 0, 0, 0);
   imagecolortransparent($img, $transparent);
   imagefilledrectangle($img, 80, 90, 400, 220, $blue);
   header('Content-Type: image/png');
   imagepng($img);
   imagedestroy($img);
?>

আউটপুট

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

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


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

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

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

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