imagefilledellipse_basic.phpt 433 B

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