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

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


ฟังก์ชัน imagecolorresolve() รับดัชนีของสีที่ระบุหรือทางเลือกที่ใกล้เคียงที่สุด

ไวยากรณ์

imagecolorresolve (img , red , green , blue )

พารามิเตอร์

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

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

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

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

คืนสินค้า

ฟังก์ชัน 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 )