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

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

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