1--TEST--
2Testing imagefilledellipse() of GD library
3--EXTENSIONS--
4gd
5--FILE--
6<?php
7
8$image = imagecreatetruecolor(100, 100);
9
10$white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF);
11
12//create an ellipse and fill it with white color
13imagefilledellipse($image, 50, 50, 40, 30, $white);
14
15include_once __DIR__ . '/func.inc';
16test_image_equals_file(__DIR__ . '/imagefilledellipse_basic.png', $image);
17?>
18--EXPECT--
19The images are equal.
20