imageellipse_basic.phpt 450 B

123456789101112131415161718192021
  1. --TEST--
  2. Testing imageellipse() of GD library
  3. --CREDITS--
  4. Ivan Rosolen <contato [at] ivanrosolen [dot] com>
  5. #testfest PHPSP on 2009-06-20
  6. --EXTENSIONS--
  7. gd
  8. --FILE--
  9. <?php
  10. // Create a image
  11. $image = imagecreatetruecolor(400, 300);
  12. // Draw a white ellipse
  13. imageellipse($image, 200, 150, 300, 200, 16777215);
  14. include_once __DIR__ . '/func.inc';
  15. test_image_equals_file(__DIR__ . '/imageellipse_basic.png', $image);
  16. ?>
  17. --EXPECT--
  18. The images are equal.