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

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


ฟังก์ชัน imagecolorallocate() จะจัดสรรสีให้กับรูปภาพ

ไวยากรณ์

int imagecolorallocate ( $img, $red, $green, $blue )

พารามิเตอร์

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

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

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

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

คืนสินค้า

ฟังก์ชัน imagecolorallocate() จะคืนค่าสีในรูปแบบ RGB

ตัวอย่าง

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

<?php
   $img = imagecreatetruecolor(600, 220);
   $bgcolor = imagecolorallocate($img, 20, 50, 120);
   imagefill($img, 0, 0, $bgcolor);
   header("Content-type: image/png");
   imagepng($img);
   imagedestroy($img);
?>

ผลลัพธ์

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

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