Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ฟังก์ชัน imagecolorexact() ใน PHP


ฟังก์ชัน imagecolorexact() รับดัชนีของสีที่ระบุ

ไวยากรณ์

imagecolorexact ( $img, $red, $green, $blue )

พารามิเตอร์

  • img :ทรัพยากรรูปภาพที่สร้างด้วย imagecreatetruecolor()

  • สีแดง :องค์ประกอบสีแดง

  • สีเขียว: องค์ประกอบสีเขียว

  • สีน้ำเงิน :องค์ประกอบสีน้ำเงิน

คืนสินค้า

ฟังก์ชัน imagecolorexact() จะคืนค่าดัชนีของสีที่ระบุในจานสี หรือ -1 หากไม่มีสี

ตัวอย่าง

ต่อไปนี้เป็นตัวอย่าง:

<?php
   $img =    imagecreatefrompng('https://www.tutorialspoint.com/assets/videos/courses/67/images/course_67_image.png');
   $colors = Array();
   $colors[] = imagecolorexact($img, 30, 90, 50);
   $colors[] = imagecolorexact($img, 80, 120, 100);
   $colors[] = imagecolorexact($img, 25, 80, 50);
   print_r($colors);
   imagedestroy($img);
?>

ผลลัพธ์

ต่อไปนี้เป็นผลลัพธ์:

Array ( [0] => 1989170 [1] => 5273700 [2] => 1658930 )