php-src/ext/gd/tests/colormatch.phpt
2005-12-25 21:45:04 +00:00

20 lines
356 B
PHP

--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);
imagedestroy($im);
?>
--EXPECTF--
Warning: imagecolormatch(): Image2 must have at least one color in %s on line %d