imagefontheight_basic.phpt 386 B

12345678910111213141516171819
  1. --TEST--
  2. Testing imagefontheight() of GD library
  3. --CREDITS--
  4. Rafael Dohms <rdohms [at] gmail [dot] com>
  5. #testfest PHPSP on 2009-06-20
  6. --SKIPIF--
  7. <?php
  8. if (!extension_loaded("gd")) die("skip GD not present");
  9. ?>
  10. --FILE--
  11. <?php
  12. var_dump(imagefontheight(1),imagefontheight(2),imagefontheight(3),imagefontheight(4),imagefontheight(5));
  13. ?>
  14. --EXPECT--
  15. int(8)
  16. int(13)
  17. int(13)
  18. int(16)
  19. int(15)