কম্পিউটার

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


imagecolorresolve() ফাংশন নির্দিষ্ট রঙের সূচী বা তার সম্ভাব্য সম্ভাব্য বিকল্প পায়।

সিনট্যাক্স

imagecolorresolve (img , red , green , blue )

প্যারামিটার

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

  • লাল :লাল উপাদানের মান।

  • সবুজ :সবুজ উপাদানের মান।

  • নীল :নীল উপাদানের মান।

ফেরত

imagecolorresolve() ফাংশন কালার ইনডেক্স প্রদান করে।

উদাহরণ

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

<?php
   $img = imagecreatefromgif('https://www.tutorialspoint.com/images/html.gif');
   $colors = array();
   $colors[] = imagecolorresolve($img, 120, 0, 190);
   $colors[] = imagecolorresolve($img, 110, 0, 140);
   $colors[] = imagecolorresolve($img, 120, 190, 0);
   print_r($colors);
   imagedestroy($img);
?>

আউটপুট

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

Array ( [0] => 128 [1] => 129 [2] => 130 )

  1. পিএইচপি সর্বোচ্চ() ফাংশন

  2. PHP log10() ফাংশন

  3. পিএইচপি লগ() ফাংশন

  4. পিএইচপি lcg_value() ফাংশন