ฟังก์ชัน imagefilledrectangle() วาดรูปสี่เหลี่ยมผืนผ้าที่เติมสี
ไวยากรณ์
imagefilledrectangle( $img, $x1, $y1, $x2, $y2, $color )
พารามิเตอร์
-
รูปภาพ
สร้างภาพเปล่าด้วย imagecreatetruecolor() -
x1
พิกัด x สำหรับจุดที่ 1 -
ปี1
พิกัด y สำหรับจุดที่ 1 -
x2
พิกัด x สำหรับจุดที่ 2 -
ปี2
พิกัด y สำหรับจุดที่ 2 -
สี
สีเติม
คืนสินค้า
ฟังก์ชัน imagefilledrectangle() คืนค่า TRUE เมื่อสำเร็จ หรือ FALSE เมื่อล้มเหลว
ตัวอย่าง
ต่อไปนี้เป็นตัวอย่าง:
<?php // Create an image $img = imagecreatetruecolor(500, 300); $color = imagecolorallocate($img, 0, 128, 128); imagefilledrectangle($img, 30, 30, 470, 270, $color); header("Content-type: image/png"); imagepng($img); imagedestroy($img); ?>
ผลลัพธ์
ต่อไปนี้เป็นผลลัพธ์: