--TEST--
Testing imagecolorallocatealpha(): Wrong types for parameter 5
--CREDITS--
Rafael Dohms <rdohms [at] gmail [dot] com>
--SKIPIF--
<?php 
    
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php
$img 
imagecreatetruecolor(200200);

imagecolorallocatealpha($img255255255'string-non-numeric');
imagecolorallocatealpha($img255255255, array());
imagecolorallocatealpha($img255255255tmpfile());
?>
--EXPECTF--
Warning: imagecolorallocatealpha() expects parameter 5 to be long, %s given in %s on line %d

Warning: imagecolorallocatealpha() expects parameter 5 to be long, array given in %s on line %d

Warning: imagecolorallocatealpha() expects parameter 5 to be long, resource given in %s on line %d