imageinterlace_variation2.phpt 479 B

12345678910111213141516171819202122
  1. --TEST--
  2. Testing setting the interlace bit off 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. //setting the interlace bit to on
  12. imageinterlace($image, true);
  13. //setting de interlace bit to off
  14. var_dump(imageinterlace($image, false));
  15. var_dump(imageinterlace($image));
  16. ?>
  17. --EXPECT--
  18. bool(false)
  19. bool(false)