imageinterlace_variation1.phpt 376 B

123456789101112131415161718
  1. --TEST--
  2. Testing setting the interlace bit on with imageinterlace() of GD library
  3. --CREDITS--
  4. Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
  5. #testfest PHPSP on 2009-06-20
  6. --EXTENSIONS--
  7. gd
  8. --FILE--
  9. <?php
  10. $image = imagecreatetruecolor(100, 100);
  11. var_dump(imageinterlace($image, true));
  12. var_dump(imageinterlace($image));
  13. ?>
  14. --EXPECT--
  15. bool(true)
  16. bool(true)