summaryrefslogtreecommitdiff
path: root/ext/gd/tests/colormatch.phpt
blob: 283a2005719191156bb4a24c15de9bd4c064fbd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
imagecolormatch
--SKIPIF--
<?php
        if (!function_exists('imagecolormatch')) die("skip gd extension not available\n");
?>
--FILE--
<?php

$im = imagecreatetruecolor(5,5);
$im2 = imagecreate(5,5);

imagecolormatch($im, $im2);

echo "ok\n";

imagedestroy($im);
?>
--EXPECTF--
Warning: imagecolormatch(): Image2 must have at least one color in %s on line %d
ok