imageistruecolor() PHP में एक इनबिल्ट फ़ंक्शन है जिसका उपयोग यह जांचने के लिए किया जाता है कि दी गई छवि एक सच्चे रंग की छवि है या नहीं। एक सच्चे रंग की छवि में, प्रत्येक पिक्सेल को RGB (लाल, हरा और नीला) रंग मानों द्वारा निर्दिष्ट किया जाता है।
सिंटैक्स
bool imageistruecolor(resource $image)
पैरामीटर
imageistruecolor() एक पैरामीटर लेता है, $छवि . यह छवि रखता है।
रिटर्न वैल्यू
imageistruecolor() अगर दी गई इमेज ट्रू-कलर है तो ट्रू रिटर्न देता है या फिर अगर इमेज ट्रू-कलर इमेज नहीं है तो यह गलत रिटर्न देता है।
उदाहरण 1
<?php // Create an image instance with a true-color image using //imagecreatefrompng() function. $img = imagecreatefrompng('C:\xampp\htdocs\Images\img44.png'); // Checked if the image is true-color $istruecolor = imageistruecolor($img); // Show the output image to the browser if($istruecolor) { echo "The given input image is true-color"; } ?>
आउटपुट
// RGB छवि इनपुट करें
// परिणामी आउटपुट
The given input image is true-color.
उदाहरण 2
<?php // Create an image instance with a true-color image using //imagecreatefrompng() function. $img = imagecreatefrompng('C:\xampp\htdocs\Gray.png'); // Checked if the image is true-color $istruecolor = imageistruecolor($img); // Show the output image to the browser if($istruecolor) { echo "The given input image is not a true-color"; } ?>
आउटपुट
// एक इनपुट ग्रे रंग की छवि।
// आउटपुट
The given input image is not a true-color image.