php-src/ext/gd/tests/truecolor.phpt
Pierre Joye 49f0d6b8c2 - add truecolortopallete and istruecolor test
- titles for colorclosest/resolve...
2005-12-24 14:05:20 +00:00

20 lines
373 B
PHP

--TEST--
imageistruecolor, truecolortopalette
--SKIPIF--
<?php
if (!function_exists('imagetruecolortopalette')) die("skip gd extension not available\n");
?>
--FILE--
<?php
$im = imagecreatetruecolor(1,1);
if (imageistruecolor($im)) echo "ok\n";
if (imagetruecolortopalette($im, 1,2)) echo "ok\n";
if (!imageistruecolor($im)) echo "ok\n";
?>
--EXPECTF--
ok
ok
ok