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

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


ฟังก์ชัน imagefilledellipse() ใช้เพื่อวาดวงรีที่เติมสี

ไวยากรณ์

imagefilledellipse( $img, $cx, $cy, $width, $height, $color )

พารามิเตอร์

  • img สิ่งนี้สร้างภาพเปล่าด้วย imagecreatetruecolor()

  • cx พิกัด x ของศูนย์

  • ซี่ พิกัด y ของศูนย์

  • ความกว้าง ความกว้างของวงรี

  • ส่วนสูง ความสูงของวงรี

  • สี สีเติม

คืนสินค้า

ฟังก์ชัน imagefilledellipse() ส่งคืนค่า TRUE เมื่อสำเร็จ หรือ FALSE เมื่อล้มเหลว

ตัวอย่าง

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

<?php
   $img = imagecreatetruecolor(450, 290);
   $bgColor = imagecolorallocate($img, 140, 180, 140);
   imagefill($img, 0, 0, $bgColor);
   $ellipse = imagecolorallocate($img, 120, 50, 70);
   imagefilledellipse($img, 225, 150, 400, 250, $ellipse);
   header("Content-type: image/png");
   imagepng($img);
?>

ผลลัพธ์

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

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