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

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

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