--TEST--
Testing imagecolorallocatealpha(): Wrong types for parameter 3
--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($img255'string-non-numeric'25550);
imagecolorallocatealpha($img255, array(), 25550);
imagecolorallocatealpha($img255tmpfile(), 25550);
?>
--EXPECTF--
Warning: imagecolorallocatealpha() expects parameter 3 to be long, %s given in %s on line %d

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

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