1--TEST--
2Testing imageistruecolor() of GD library
3--CREDITS--
4Rafael Dohms <rdohms [at] gmail [dot] com>
5--EXTENSIONS--
6gd
7--SKIPIF--
8<?php
9    if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible");
10?>
11--FILE--
12<?php
13$image = imagecreatetruecolor(180, 30);
14
15var_dump(imageistruecolor($image));
16?>
17--EXPECT--
18bool(true)
19