imagerectangle_basic.phpt 482 B

1234567891011121314151617181920
  1. --TEST--
  2. Testing imagerectangle() of GD library
  3. --CREDITS--
  4. Ivan Rosolen <contato [at] ivanrosolen [dot] com>
  5. #testfest PHPSP on 2009-06-30
  6. --EXTENSIONS--
  7. gd
  8. --FILE--
  9. <?php
  10. // Create a image
  11. $image = imagecreatetruecolor( 100, 100 );
  12. // Draw a rectangle
  13. imagerectangle( $image, 0, 0, 50, 50, imagecolorallocate($image, 255, 255, 255) );
  14. include_once __DIR__ . '/func.inc';
  15. test_image_equals_file(__DIR__ . '/imagerectangle_basic.png', $image);
  16. ?>
  17. --EXPECT--
  18. The images are equal.