छवि अंडाकार () PHP में एक इनबिल्ट फंक्शन है जिसका उपयोग दीर्घवृत्त खींचने के लिए किया जाता है। यह सफलता पर सही और असफलता पर गलत लौटाता है।
सिंटैक्स
Bool imageellipse($image, $cx, $cy, $width, $height, $color)
पैरामीटर
छवि अंडाकार () छह अलग-अलग पैरामीटर लेता है:$image , $cx , $cy , $चौड़ाई , $ऊंचाई , $रंग ।
-
$छवि - छवि का आकार बनाता है। यह छवि निर्माण कार्यों में से एक द्वारा लौटाया जाता है, जैसे कि imagecreatetruecolor()।
-
$cx - केंद्र का x-निर्देशांक सेट करता है।
-
$cy - केंद्र का y-निर्देशांक सेट करता है।
-
$चौड़ाई - दीर्घवृत्त की चौड़ाई निर्धारित करता है।
-
$ऊंचाई - दीर्घवृत्त की ऊंचाई निर्धारित करता है।
-
$रंग - दीर्घवृत्त का रंग सेट करता है। imagecolorallocate() फ़ंक्शन द्वारा बनाया गया एक रंग पहचानकर्ता।
रिटर्न वैल्यू
यह सफलता पर सही और असफलता पर गलत लौटाता है।
उदाहरण 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); ?>
आउटपुट