summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imageistruecolor_basic.phpt
blob: 971a9dc3b8f6895dacb6dcda70b16c0124f1d635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Testing imageistruecolor() of GD library
--CREDITS--
Rafael Dohms <rdohms [at] gmail [dot] com>
--SKIPIF--
<?php
    if (!extension_loaded("gd")) die("skip GD not present");
    if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible");
?>
--FILE--
<?php
$image = imagecreatetruecolor(180, 30);

var_dump(imageistruecolor($image));
?>
--EXPECT--
bool(true)