imagefontheight_basic.phpt 326 B

1234567891011121314151617
  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. --EXTENSIONS--
  7. gd
  8. --FILE--
  9. <?php
  10. var_dump(imagefontheight(1),imagefontheight(2),imagefontheight(3),imagefontheight(4),imagefontheight(5));
  11. ?>
  12. --EXPECT--
  13. int(8)
  14. int(13)
  15. int(13)
  16. int(16)
  17. int(15)