1--TEST--
2Testing imagefontwidth() of GD library
3--CREDITS--
4Rafael 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
12var_dump(imagefontwidth(1),imagefontwidth(2),imagefontwidth(3),imagefontwidth(4),imagefontwidth(5));
13var_dump(imagefontwidth(1) < imagefontwidth(5));
14?>
15--EXPECT--
16int(5)
17int(6)
18int(7)
19int(8)
20int(9)
21bool(true)
22