imageellipse() เป็นฟังก์ชัน inbuilt ใน PHP ที่ใช้ในการวาดวงรี คืนค่า True เมื่อสำเร็จและ False เมื่อล้มเหลว
ไวยากรณ์
Bool imageellipse($image, $cx, $cy, $width, $height, $color)
พารามิเตอร์
imageellipse() ใช้พารามิเตอร์ที่แตกต่างกัน 6 ตัว:$image , $cx , $cy , $ความกว้าง , $height , $สี .
-
$image - สร้างขนาดของภาพ ส่งคืนโดยหนึ่งในฟังก์ชันการสร้างภาพ เช่น imagecreatetruecolor()
-
$cx − ตั้งค่าพิกัด x ของจุดศูนย์กลาง
-
$cy − ตั้งค่าพิกัด y ของจุดศูนย์กลาง
-
$ความกว้าง − กำหนดความกว้างของวงรี
-
$ความสูง − กำหนดความสูงของวงรี
-
$สี − กำหนดสีของวงรี ตัวระบุสีที่สร้างโดยฟังก์ชัน imagecolorallocate()
คืนค่า
คืนค่า True เมื่อสำเร็จและ False เมื่อล้มเหลว
ตัวอย่างที่ 1
<?php
// Create a blank image.
$image = imagecreatetruecolor(700, 350);
// Select the background color.
$bg = imagecolorallocate($image, 0, 0, 0);
// Fill the background with the color selected above.
imagefill($image, 0, 0, $bg);
// Choose a color for the ellipse.
$col_ellipse = imagecolorallocate($image, 255, 255, 255);
// Draw the ellipse.
imageellipse($image, 325, 175, 500, 175, $col_ellipse);
// Output the image.
header("Content-type: image/png");
imagepng($image);
?> ผลลัพธ์

ตัวอย่างที่ 2
<?php
//It creates the blank image or size of the image.
$image = imagecreatetruecolor(700, 600);
//Set the background color of the image.
$bg = imagecolorallocate($image, 122, 122, 122);
//Fill background with the above-selected color.
imagefill($image, 0, 0, $bg);
// set color of the ellipse.
$col_ellipse = imagecolorallocate($image, 0, 255, 255);
// Function to draw the ellipse.
imageellipse($image, 250, 300, 300, 550, $col_ellipse);
// Output of the image.
header("Content-type: image/gif");
imagepng($image);
?> ผลลัพธ์
