-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/gd/tests/
File Upload :
Current File : //usr/src/php/ext/gd/tests/imagetruecolortopalette_error2.phpt

--TEST--
Testing imagetruecolortopalette(): wrong parameters for parameter 2
--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(50, 50);
$resource = tmpfile();

imagetruecolortopalette($image, $resource, 2);
imagetruecolortopalette($image, array(), 2);

?>
--EXPECTF--
Warning: imagetruecolortopalette() expects parameter 2 to be boolean, resource given in %s on line %d

Warning: imagetruecolortopalette() expects parameter 2 to be boolean, array given in %s on line %d

Copyright © 2017 || Recoded By Mr.Bumblebee