--TEST--
Testing imagetruecolortopalette(): out of range parameter 3
--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(5050);

imagetruecolortopalette($imagetrue0);
imagetruecolortopalette($imagetrue, -1);

?>
--EXPECTF--
Warning: imagetruecolortopalette(): Number of colors has to be greater than zero in %s on line %d

Warning: imagetruecolortopalette(): Number of colors has to be greater than zero in %s on line %d